diff options
| author | 2019-09-29 22:59:27 +0530 | |
|---|---|---|
| committer | 2019-09-29 22:59:27 +0530 | |
| commit | 17de5bfc272243e5797715da3a2306a71c70fc88 (patch) | |
| tree | 59c2270e342a090185a62611ae03c711c41c6806 /src | |
| parent | b046157b61b880adc9d601d2e3230dc96ec63029 (diff) | |
| download | nnn-17de5bfc272243e5797715da3a2306a71c70fc88.tar.gz | |
Use better keys for selection mode
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 4 | ||||
| -rw-r--r-- | src/nnn.h | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -2856,8 +2856,8 @@ static bool show_help(const char *path) "1FILES\n" "b^O Open with... n Create new/link\n" "cD File detail ^R F2 Rename/duplicate\n" - "5⎵ ^K / Y Select entry/all r Batch rename\n" - "9K ^Y Toggle selection y List selection\n" + "5⎵ ^K / a Select entry/all r Batch rename\n" + "9' ^Y Toggle selection y List selection\n" "cP Copy selection X Delete selection\n" "cV Move selection ^X Delete entry\n" "cf Create archive C Execute entry\n" @@ -198,10 +198,10 @@ static struct key bindings[] = { { CONTROL('K'), SEL_SEL }, { ' ', SEL_SEL }, /* Toggle select multiple files */ - { 'K', SEL_SELMUL }, + { '\'', SEL_SELMUL }, { CONTROL('Y'), SEL_SELMUL }, /* Select all files in current dir */ - { 'Y', SEL_SELALL }, + { 'a', SEL_SELALL }, /* Show list of copied files */ { 'y', SEL_SELLST }, /* Copy from selection buffer */ |