fix: update desc to be pluralizatable

This commit is contained in:
Zhang ShengYan 2024-09-24 09:42:05 +08:00
parent 631afd09ee
commit d6ade9921f

View file

@ -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" },