From 4e839d4e2ce83dbc6047744ec6eedaf8c6094c0e Mon Sep 17 00:00:00 2001 From: Soispha Date: Wed, 18 Oct 2023 23:10:44 +0200 Subject: [PATCH] fix(config/lua): Add the 'jj' mapping the insert mode This is just here to prove that the fixes for the KeyInputPending mode actually work --- config/lua/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/lua/init.lua b/config/lua/init.lua index 81743c0..852b5c6 100644 --- a/config/lua/init.lua +++ b/config/lua/init.lua @@ -24,6 +24,6 @@ trinitrix.std.keymaps.add("n", ":", trinitrix.api.ui.command_line_show) trinitrix.std.keymaps.add("n", "i", trinitrix.api.ui.set_mode_insert) -- a simple test to prove that key chords work -trinitrix.std.keymaps.add("n", "jj", function() print("hi") end) +trinitrix.std.keymaps.add("ni", "jj", function() print("hi") end) trinitrix.std.keymaps.add("n", "q", trinitrix.api.exit)