From 098f7396d83a7def71eb94c19465b743d909c092 Mon Sep 17 00:00:00 2001 From: marcoleder Date: Tue, 14 Jan 2025 06:47:21 +0100 Subject: [PATCH] fix: wrong description of the `swipe` command (#2197) --- yazi-config/preset/keymap-default.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yazi-config/preset/keymap-default.toml b/yazi-config/preset/keymap-default.toml index be9916ea..23d7ff3e 100644 --- a/yazi-config/preset/keymap-default.toml +++ b/yazi-config/preset/keymap-default.toml @@ -188,8 +188,8 @@ keymap = [ { on = "k", run = "arrow -1", desc = "Move cursor up" }, { on = "j", run = "arrow 1", desc = "Move cursor down" }, - { on = "h", run = "swipe -1", desc = "Swipe to the next file" }, - { on = "l", run = "swipe 1", desc = "Swipe to the previous file" }, + { on = "h", run = "swipe -1", desc = "Swipe to the previous file" }, + { on = "l", run = "swipe 1", desc = "Swipe to the next file" }, { on = "", run = "arrow -1", desc = "Move cursor up" }, { on = "", run = "arrow 1", desc = "Move cursor down" },