diff options
author | 2019-09-30 06:54:06 +0530 | |
---|---|---|
committer | 2019-09-30 06:54:06 +0530 | |
commit | 9d23517d109118b4084ee488848ae353384d070b (patch) | |
tree | 5927b2ce098f71aea84d24dfbdf71be73267ba79 /src | |
parent | 318ddd2ca6bcf6c531c6126f8089320741fc72aa (diff) | |
download | nnn-9d23517d109118b4084ee488848ae353384d070b.tar.gz |
key ^Y is now ^S, key ^K is now ^J, kwy ' is now m
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 4 | ||||
-rw-r--r-- | src/nnn.h | 6 |
2 files changed, 5 insertions, 5 deletions
@@ -2855,8 +2855,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 / a Select entry/all r Batch rename\n" - "9' ^Y Toggle selection y List selection\n" + "5⎵ ^J / a Select entry/all r Batch rename\n" + "9m ^S Toggle multi sel 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" @@ -195,11 +195,11 @@ static struct key bindings[] = { { CONTROL('L'), SEL_REDRAW }, { KEY_F(5), SEL_REDRAW }, /* Select current file path */ - { CONTROL('K'), SEL_SEL }, + { CONTROL('J'), SEL_SEL }, { ' ', SEL_SEL }, /* Toggle select multiple files */ - { '\'', SEL_SELMUL }, - { CONTROL('Y'), SEL_SELMUL }, + { 'm', SEL_SELMUL }, + { CONTROL('S'), SEL_SELMUL }, /* Select all files in current dir */ { 'a', SEL_SELALL }, /* Show list of copied files */ |