diff --git a/yazi/keymap.toml b/yazi/keymap.toml index 5348599..cfe83e0 100644 --- a/yazi/keymap.toml +++ b/yazi/keymap.toml @@ -21,6 +21,9 @@ keymap = [ { on = "", run = "arrow -1", desc = "Move cursor up" }, { on = "", run = "arrow 1", desc = "Move cursor down" }, + { on = "k", run = "arrow -1", desc = "Move cursor up" }, + { on = "j", run = "arrow 1", desc = "Move cursor down" }, + { on = "", run = "arrow -50%", desc = "Move cursor up half page" }, { on = "", run = "arrow 50%", desc = "Move cursor down half page" }, { on = "", run = "arrow -100%", desc = "Move cursor up one page" }, @@ -39,6 +42,10 @@ keymap = [ { on = "", run = "leave", desc = "Go back to the parent directory" }, { on = "", run = "enter", desc = "Enter the child directory" }, + { on = "h", run = "leave", desc = "Go back to the parent directory" }, + { on = "l", run = "enter", desc = "Enter the child directory" }, + + # Seeking { on = "K", run = "seek -5", desc = "Seek up 5 units in the preview" }, { on = "J", run = "seek 5", desc = "Seek down 5 units in the preview" },