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
This commit is contained in:
Benedikt Peetz 2023-10-18 23:10:44 +02:00
parent c024b73625
commit 4e839d4e2c
Signed by: bpeetz
GPG Key ID: A5E94010C3A642AD
1 changed files with 1 additions and 1 deletions

View File

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