From def6a3f4f57e7c8caa355b3a7b87a1331b648f37 Mon Sep 17 00:00:00 2001 From: sxyazi Date: Sat, 4 Jan 2025 09:38:04 +0800 Subject: [PATCH] `` and `` should keep the original behavior --- yazi-config/preset/keymap-default.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yazi-config/preset/keymap-default.toml b/yazi-config/preset/keymap-default.toml index 210e85dd..e7b54bb2 100644 --- a/yazi-config/preset/keymap-default.toml +++ b/yazi-config/preset/keymap-default.toml @@ -260,12 +260,12 @@ keymap = [ # Line-wise movement { on = "0", run = "move bol", desc = "Move to the BOL" }, + { on = "$", run = "move eol", desc = "Move to the EOL" }, { on = "_", run = "move first-char", desc = "Move to the first non-whitespace character" }, { on = "^", run = "move first-char", desc = "Move to the first non-whitespace character" }, - { on = "$", run = "move eol", desc = "Move to the EOL" }, - { on = "", run = "move first-char", desc = "Move to the BOL" }, + { on = "", run = "move bol", desc = "Move to the BOL" }, { on = "", run = "move eol", desc = "Move to the EOL" }, - { on = "", run = "move first-char", desc = "Move to the BOL" }, + { on = "", run = "move bol", desc = "Move to the BOL" }, { on = "", run = "move eol", desc = "Move to the EOL" }, # Delete