From d2a004dce44b76e2ea7b84c5b3c68d83f6b2df19 Mon Sep 17 00:00:00 2001 From: Uveso Date: Mon, 11 Nov 2024 03:32:12 +0100 Subject: [PATCH] fix 2nd loop --- lua/keymap/keymapper.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/keymap/keymapper.lua b/lua/keymap/keymapper.lua index a4c8806a92..28bfd0b3b1 100644 --- a/lua/keymap/keymapper.lua +++ b/lua/keymap/keymapper.lua @@ -215,7 +215,7 @@ function GetKeyActions() end for k,v in debugKeyActions do - if ret[k] and ret[k] != v.action then + if ret[k] and ret[k].action != v.action then WARN(string.format("Overwriting user key action: %s -> %s", k, ret[k].action)) end