From 82b78d31df2b167e04f3a686fca610ea968d2a5e Mon Sep 17 00:00:00 2001 From: hankertrix <91734413+hankertrix@users.noreply.github.com> Date: Tue, 5 Mar 2024 15:31:46 +0800 Subject: [PATCH] feat: Add and for moving the cursor These 2 key binds are for moving the cursor down and up respectively in the completion menu. --- yazi-config/preset/keymap.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yazi-config/preset/keymap.toml b/yazi-config/preset/keymap.toml index 420408fc..bce3ed3e 100644 --- a/yazi-config/preset/keymap.toml +++ b/yazi-config/preset/keymap.toml @@ -276,6 +276,9 @@ keymap = [ { on = [ "" ], run = "arrow -1", desc = "Move cursor up" }, { on = [ "" ], run = "arrow 1", desc = "Move cursor down" }, + { on = [ "" ], run = "arrow -1", desc = "Move cursor up" }, + { on = [ "" ], run = "arrow 1", desc = "Move cursor down" }, + { on = [ "~" ], run = "help", desc = "Open help" } ]