fix: remove disabled maps from which-key again

navigator
Leon Heidelbach 2 years ago committed by siduck
parent 359a286aea
commit 3fc888c147

@ -64,7 +64,7 @@ nvchad.remove_disabled_mappings = function(key_map)
for k, v in pairs(key_map) do
if v ~= nil and v ~= "" then clean_map[k] = v end
end
else
elseif not key_map == nil and not key_map == "" then
return key_map
end
return clean_map

Loading…
Cancel
Save