fix(keymaps): get_keymaps takes remove_keymaps as parameter

This commit is contained in:
kiyan 2022-07-30 10:50:10 +02:00
parent 665813b9e6
commit 9bbf95e616

View File

@ -280,7 +280,7 @@ local function get_keymaps(keys_to_disable)
end end
function M.setup(opts) function M.setup(opts)
M.keymaps = get_keymaps(opts) M.keymaps = get_keymaps(opts.remove_keymaps)
end end
return M return M