aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-09-30 18:54:27 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-09-30 18:54:27 +0530
commit7cae5dfe44942c54463c09a373f3dd70c6fc4e53 (patch)
treeee14c792b62bc5cbe941f6cfaa36d59dcc673af2 /src
parent62a0932976ed6aeda6e4b29b8c43b9b8dcd54135 (diff)
downloadnnn-7cae5dfe44942c54463c09a373f3dd70c6fc4e53.tar.gz
Shortcut to list selection y is now M
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c2
-rw-r--r--src/nnn.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nnn.c b/src/nnn.c
index d88a07c..a0617a9 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -2858,7 +2858,7 @@ static bool show_help(const char *path)
"b^O Open with... n Create new/link\n"
"cD File detail ^R F2 Rename/duplicate\n"
"5⎵ ^J / a Select entry/all r Batch rename\n"
- "9m ^S Toggle multi sel y List selection\n"
+ "9m ^S Toggle multi sel M List selection\n"
"cP Copy selection X Delete selection\n"
"cV Move selection ^X Delete entry\n"
"cf Create archive C Execute entry\n"
diff --git a/src/nnn.h b/src/nnn.h
index 6ed801b..5339c58 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -203,7 +203,7 @@ static struct key bindings[] = {
/* Select all files in current dir */
{ 'a', SEL_SELALL },
/* Show list of copied files */
- { 'y', SEL_SELLST },
+ { 'M', SEL_SELLST },
/* Copy from selection buffer */
{ 'P', SEL_CP },
/* Move from selection buffer */