From a51f4ddd06fda528264ecbbca14a0017675b3a4d Mon Sep 17 00:00:00 2001 From: sxyazi Date: Fri, 29 Dec 2023 02:41:07 +0800 Subject: [PATCH] .. --- yazi-config/preset/keymap.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/yazi-config/preset/keymap.toml b/yazi-config/preset/keymap.toml index fd76a3bd..115aa716 100644 --- a/yazi-config/preset/keymap.toml +++ b/yazi-config/preset/keymap.toml @@ -90,13 +90,13 @@ keymap = [ { on = [ "c", "n" ], exec = "copy name_without_ext", desc = "Copy the name of the file without the extension" }, # Filter - { on = [ "f" ], exec = "filter" }, + { on = [ "f" ], exec = "filter --smart", desc = "Filter the files" }, # Find - { on = [ "/" ], exec = "find --smart" }, - { on = [ "?" ], exec = "find --previous --smart" }, - { on = [ "n" ], exec = "find_arrow" }, - { on = [ "N" ], exec = "find_arrow --previous" }, + { on = [ "/" ], exec = "find --smart", desc = "Find next file" }, + { on = [ "?" ], exec = "find --previous --smart", desc = "Find previous file" }, + { on = [ "n" ], exec = "find_arrow", desc = "Go to next found file" }, + { on = [ "N" ], exec = "find_arrow --previous", desc = "Go to previous found file" }, # Sorting { on = [ ",", "m" ], exec = "sort modified --dir_first", desc = "Sort by modified time" },