From 5c3ea6e2ff8364ddbf4c2ba4d82208158b8a9933 Mon Sep 17 00:00:00 2001 From: OliverGuy Date: Thu, 7 May 2026 01:04:38 +0200 Subject: [PATCH] fix(keymap): jk normal mode --- yazi-config/preset/keymap-default.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/yazi-config/preset/keymap-default.toml b/yazi-config/preset/keymap-default.toml index 212633c5..3807d2fd 100644 --- a/yazi-config/preset/keymap-default.toml +++ b/yazi-config/preset/keymap-default.toml @@ -309,6 +309,8 @@ keymap = [ { on = "", run = "history +1", desc = "Navigate to the next history entry" }, { on = "", run = "history -1", desc = "Navigate to the previous history entry" }, { on = "", 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" },