fix(keymap): jk normal mode

This commit is contained in:
OliverGuy 2026-05-07 01:04:38 +02:00
parent d68aeeb5e9
commit 5c3ea6e2ff

View file

@ -309,6 +309,8 @@ keymap = [
{ on = "<Down>", run = "history +1", desc = "Navigate to the next history entry" },
{ on = "<C-p>", run = "history -1", desc = "Navigate to the previous history entry" },
{ on = "<C-n>", run = "history +1", desc = "Navigate to the next history entry" },
{ on = "k", run = "history -1", desc = "Navigate to the previous history entry" },
{ on = "j", run = "history +1", desc = "Navigate to the next history entry" },
# Undo/Redo/Casefy
{ on = "u", run = [ "undo", "casefy lower" ], desc = "Undo, or lowercase if in visual mode" },