From 4222c0ed45a0b25e59a7f3cde5d7e8389f8ed092 Mon Sep 17 00:00:00 2001 From: grig-iv <77640875+grig-iv@users.noreply.github.com> Date: Sun, 11 Feb 2024 10:48:58 +0300 Subject: [PATCH] feat: add `` and `` to `[input]` keymap --- yazi-config/preset/keymap.toml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/yazi-config/preset/keymap.toml b/yazi-config/preset/keymap.toml index af622e9e..c108e082 100644 --- a/yazi-config/preset/keymap.toml +++ b/yazi-config/preset/keymap.toml @@ -222,10 +222,12 @@ keymap = [ { on = [ "" ], exec = "forward --end-of-word", desc = "Move forward to the end of the current or next word" }, # Line-wise movement - { on = [ "0" ], exec = "move -999", desc = "Move to the BOL" }, - { on = [ "$" ], exec = "move 999", desc = "Move to the EOL" }, - { on = [ "" ], exec = "move -999", desc = "Move to the BOL" }, - { on = [ "" ], exec = "move 999", desc = "Move to the EOL" }, + { on = [ "0" ], exec = "move -999", desc = "Move to the BOL" }, + { on = [ "$" ], exec = "move 999", desc = "Move to the EOL" }, + { on = [ "" ], exec = "move -999", desc = "Move to the BOL" }, + { on = [ "" ], exec = "move 999", desc = "Move to the EOL" }, + { on = [ "" ], exec = "move -999", desc = "Move to the BOL" }, + { on = [ "" ], exec = "move 999", desc = "Move to the EOL" }, # Delete { on = [ "" ], exec = "backspace", desc = "Delete the character before the cursor" },