aboutsummaryrefslogtreecommitdiffstats
path: root/src/nnn.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nnn.h')
-rw-r--r--src/nnn.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nnn.h b/src/nnn.h
index 8dbf734..2eead91 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -195,21 +195,21 @@ static struct key bindings[] = {
/* Redraw window */
{ CONTROL('L'), SEL_REDRAW },
{ KEY_F(5), SEL_REDRAW },
- /* Copy currently selected file path */
+ /* Select current file path */
{ CONTROL('K'), SEL_SEL },
{ ' ', SEL_SEL },
- /* Toggle copy multiple file paths */
+ /* Toggle select multiple files */
{ 'K', SEL_SELMUL },
{ CONTROL('Y'), SEL_SELMUL },
/* Select all files in current dir */
{ 'Y', SEL_SELALL },
/* Show list of copied files */
{ 'y', SEL_SELLST },
- /* Copy from copy buffer */
+ /* Copy from selection buffer */
{ 'P', SEL_CP },
- /* Move from copy buffer */
+ /* Move from selection buffer */
{ 'V', SEL_MV },
- /* Delete from copy buffer */
+ /* Delete from selection buffer */
{ 'X', SEL_RMMUL },
/* Delete currently selected */
{ CONTROL('X'), SEL_RM },