aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-14 00:17:16 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-12-14 00:17:16 +0530
commit1f0f3fdf01ea8f99d38e47deed21aefd3414546e (patch)
tree3bc2d8e0dc3a9211b346dd6c9e46455ae5ce81fa
parent78830781ee8b24fc2cb260802ec468cd10de5d68 (diff)
downloadnnn-1f0f3fdf01ea8f99d38e47deed21aefd3414546e.tar.gz
Update man
-rw-r--r--README.md2
-rw-r--r--nnn.112
-rw-r--r--src/nnn.c4
3 files changed, 8 insertions, 10 deletions
diff --git a/README.md b/README.md
index 0a01a3c..8264418 100644
--- a/README.md
+++ b/README.md
@@ -228,7 +228,7 @@ The list below is from the **dev branch**. Press <kbd>?</kbd> in `nnn` to see th
D File details ^R F2 Rename/duplicate
Space ^J/a Sel toggle/all r Batch rename
m ^K Sel range, clear M List sel
- P Copy sel here K Edit, flush sel
+ P Copy sel here K Edit sel
V Move sel here w Copy/move sel as
X Del sel ^X Del entry
f Archive o ^F Archive ops
diff --git a/nnn.1 b/nnn.1
index a9fd662..8130587 100644
--- a/nnn.1
+++ b/nnn.1
@@ -160,21 +160,19 @@ When there's a unique match and it's a directory,
.Nm
auto selects the directory and enters it in this mode.
.Sh SELECTION
-There are 3 groups of shortcuts to add files to selection:
+There are 3 groups of keybinds to add files to selection:
.Pp
(1) hovered file selection toggle (deselects if '+' is visible before the entry, else adds to selection)
.br
-(2) add a range of files to selection
+(2) add a range of files to selection (repeat the range key on the same entry twice to clear selection completely)
.br
(3) add all files in the current directory to selection
.Pp
-The selection can now be listed, copied, moved, removed, archived or linked.
+A selection can be listed, edited, copied, moved, removed, archived or linked.
.Pp
-Absolute paths of the selected files are copied to the temporary file \fB.selection\fR in the config directory. The path is shown in the help and configuration screen.
+Absolute paths of the selected files are copied to \fB.selection\fR file in the config directory.
.Pp
-To flush the selection without running any operation use the _edit, flush selection_ key. The list is flushed even if unchanged. Use this key to remove a file from selection after you navigate away from its directory. Flushing doesn't end the selection mode. You can add more files to the selection and edit/flush the list again. Flushing doesn't end the selection mode. You can add more files to the selection and edit/flush the list again.
-.Pp
-Repeat range selection on the same entry twice to clear selection completely.
+To edit the selection use the _edit selection_ key. Use this key to remove a file from selection after you navigate away from its directory. Editing doesn't end the selection mode. You can add more files to the selection and edit the list again.
.Sh FILE SIZE
The minimum file size unit is byte (B). The rest are K, M, G, T, P, E, Z, Y (powers of 1024), same as the default units in \fIls\fR.
.Sh ENVIRONMENT
diff --git a/src/nnn.c b/src/nnn.c
index 854bc87..c0beb5c 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -3489,7 +3489,7 @@ static void show_help(const char *path)
"cD File details ^R F2 Rename/duplicate\n"
"3Space ^J/a Sel toggle/all r Batch rename\n"
"9m ^K Sel range, clear M List sel\n"
- "cP Copy sel here K Edit, flush sel\n"
+ "cP Copy sel here K Edit sel\n"
"cV Move sel here w Copy/move sel as\n"
"cX Del sel ^X Del entry\n"
"cf Archive o ^F Archive ops\n"
@@ -4940,7 +4940,7 @@ nochange:
case SEL_SELEDIT:
r = editselection();
if (r <= 0) {
- const char * msg
+ const char *msg
= (!r ? messages[MSG_0_SELECTED] : messages[MSG_FAILED]);
printwait(msg, &presel);
goto nochange;