diff options
| author | 2018-11-23 07:44:32 +0530 | |
|---|---|---|
| committer | 2018-11-23 07:44:32 +0530 | |
| commit | 82fbf19803a563b76a6c0b7d1be8aa237d698c95 (patch) | |
| tree | 93e2e827885c07417ae8a91b972c116a2242f217 /src | |
| parent | 897817a6774d64a6022d906bd9248762c609ac0e (diff) | |
| download | nnn-82fbf19803a563b76a6c0b7d1be8aa237d698c95.tar.gz | |
Add `Y` as selection keybind
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 2 | ||||
| -rw-r--r-- | src/nnn.h | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -1977,7 +1977,7 @@ static int show_help(char *path) "d^O Open with... n Create new\n" "eD File details d Toggle detail view\n" "d^R Rename entry r Open dir in vidir\n" - "d^Y Toggle selection y List selection\n" + "aY, ^Y Toggle selection y List selection\n" "a⎵, ^K Copy entry path ^T Toggle path quote\n" "eP Copy selection X Delete selection\n" "eV Move selection ^X Delete entry\n" @@ -195,6 +195,7 @@ static struct key bindings[] = { { ' ', SEL_COPY, "", "" }, /* Toggle copy multiple file paths */ { CONTROL('Y'), SEL_COPYMUL, "", "" }, + { 'Y', SEL_COPYMUL, "", "" }, /* Show list of copied files */ { 'y', SEL_COPYLIST, "", "" }, /* Copy from copy buffer */ |