Fix duplicate setup

This commit is contained in:
hrsh7th
2021-08-17 23:28:10 +09:00
parent 38612b4aa4
commit 24158a72b2
2 changed files with 10 additions and 13 deletions

View File

@@ -74,7 +74,7 @@ end
core.on_keymap = function(keys, fallback)
for key, action in pairs(config.get().mapping) do
if key == keys then
return action(core, fallback)
return action.invoke(core, fallback)
end
end