aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-10-02 12:14:38 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-10-02 12:14:38 +0530
commit757a783d497c709a076f21ca9ed2258dfce81a21 (patch)
tree1812a1adf958d61946553adb3bf7c6dfcb0a8988
parentf75620e95b3ed3c48e5ec455f39ca21d188e84d0 (diff)
downloadnnn-757a783d497c709a076f21ca9ed2258dfce81a21.tar.gz
^S is used by stty, use ^K
-rw-r--r--README.md2
-rw-r--r--src/nnn.c2
-rw-r--r--src/nnn.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 325c7db..4c82a0c 100644
--- a/README.md
+++ b/README.md
@@ -205,7 +205,7 @@ The list below is from the **dev branch**. Press <kbd>?</kbd> in `nnn` to see th
^O Open with... n Create new/link
D File detail ^R F2 Rename/duplicate
⎵ ^J / a Sel entry/all r Batch rename
- m ^S Sel range, clear M List selection
+ m ^K Sel range, clear M List selection
P Copy selection X Delete selection
V Move selection ^X Delete entry
f Create archive C Execute entry
diff --git a/src/nnn.c b/src/nnn.c
index 422e13f..6fa3bbe 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -2872,7 +2872,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 Sel entry/all r Batch rename\n"
- "9m ^S Sel range, clear M List selection\n"
+ "9m ^K Sel range, clear 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 5339c58..e2a9a62 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -199,7 +199,7 @@ static struct key bindings[] = {
{ ' ', SEL_SEL },
/* Toggle select multiple files */
{ 'm', SEL_SELMUL },
- { CONTROL('S'), SEL_SELMUL },
+ { CONTROL('K'), SEL_SELMUL },
/* Select all files in current dir */
{ 'a', SEL_SELALL },
/* Show list of copied files */