From a1c853de9fc6eaefec33383e2b4c255822ef151a Mon Sep 17 00:00:00 2001 From: sxyazi Date: Sat, 21 Oct 2023 09:48:44 +0800 Subject: [PATCH] fix: Use ``, `` as peek keys to avoid conflicts with `` in terminals that do not support CSI u --- config/preset/keymap.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/preset/keymap.toml b/config/preset/keymap.toml index 491b9a67..57d62670 100644 --- a/config/preset/keymap.toml +++ b/config/preset/keymap.toml @@ -25,8 +25,8 @@ keymap = [ { on = [ "H" ], exec = "back", desc = "Go back to the previous directory" }, { on = [ "L" ], exec = "forward", desc = "Go forward to the next directory" }, - { on = [ "" ], exec = "peek -5", desc = "Peek up 5 units in the preview" }, - { on = [ "" ], exec = "peek 5", desc = "Peek down 5 units in the preview" }, + { on = [ "" ], exec = "peek -5", desc = "Peek up 5 units in the preview" }, + { on = [ "" ], exec = "peek 5", desc = "Peek down 5 units in the preview" }, { on = [ "" ], exec = "arrow -1", desc = "Move cursor up" }, { on = [ "" ], exec = "arrow 1", desc = "Move cursor down" },