From d6ade9921f93abc3983e8780ac9b385ec645893d Mon Sep 17 00:00:00 2001 From: Zhang ShengYan Date: Tue, 24 Sep 2024 09:42:05 +0800 Subject: [PATCH] fix: update desc to be pluralizatable --- yazi-config/preset/keymap.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/yazi-config/preset/keymap.toml b/yazi-config/preset/keymap.toml index b420a970..253e6217 100644 --- a/yazi-config/preset/keymap.toml +++ b/yazi-config/preset/keymap.toml @@ -89,10 +89,10 @@ keymap = [ { on = [ "m", "n" ], run = "linemode none", desc = "Linemode: none" }, # Copy - { on = [ "c", "c" ], run = "copy path", desc = "Copy the file path" }, - { on = [ "c", "d" ], run = "copy dirname", desc = "Copy the directory path" }, - { on = [ "c", "f" ], run = "copy filename", desc = "Copy the filename" }, - { on = [ "c", "n" ], run = "copy name_without_ext", desc = "Copy the filename without extension" }, + { on = [ "c", "c" ], run = "copy path", desc = "Copy the file path{s}" }, + { on = [ "c", "d" ], run = "copy dirname", desc = "Copy the directory path{s}" }, + { on = [ "c", "f" ], run = "copy filename", desc = "Copy the filename{s}" }, + { on = [ "c", "n" ], run = "copy name_without_ext", desc = "Copy the filename{s} without extension" }, # Filter { on = "f", run = "filter --smart", desc = "Filter files" },