fix: handle bug when which-key is not installed
This commit is contained in:
parent
3fc888c147
commit
ec62a5cee8
|
@ -124,7 +124,7 @@ nvchad.no_WhichKey_map = function()
|
||||||
if not vim.tbl_contains(ignore_modes, mode) then
|
if not vim.tbl_contains(ignore_modes, mode) then
|
||||||
for keybind, cmd in pairs(keymap) do
|
for keybind, cmd in pairs(keymap) do
|
||||||
-- disabled keys will not have cmd set
|
-- disabled keys will not have cmd set
|
||||||
if cmd ~= "" then
|
if cmd ~= "" and cmd[1] then
|
||||||
nvchad.map(mode, keybind, cmd[1])
|
nvchad.map(mode, keybind, cmd[1])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue