fix: remove disabled maps from which-key again

This commit is contained in:
Leon Heidelbach 2022-05-15 14:10:39 +02:00 committed by siduck
parent 359a286aea
commit 3fc888c147

View file

@ -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