diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2020-01-14 03:30:52 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2020-01-14 03:34:52 +0530 |
commit | 3ccc6807ed96d60342d2a58a3e02b7660d2e3957 (patch) | |
tree | 787a277e483a21ba6825fd462752a2554b30057c /src/nnn.h | |
parent | 44871dd9d7c54f2f6836c560bfe7061c32b01878 (diff) | |
download | nnn-3ccc6807ed96d60342d2a58a3e02b7660d2e3957.tar.gz |
New lowercase keys
Diffstat (limited to 'src/nnn.h')
-rw-r--r-- | src/nnn.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -187,15 +187,15 @@ static struct key bindings[] = { /* Select all files in current dir */ { 'a', SEL_SELALL }, /* List, edit selection */ - { CONTROL('W'), SEL_SELEDIT }, + { 'e', SEL_SELEDIT }, /* Copy from selection buffer */ - { 'P', SEL_CP }, + { 'p', SEL_CP }, /* Move from selection buffer */ - { 'V', SEL_MV }, + { 'v', SEL_MV }, /* Copy/move from selection buffer and rename */ { CONTROL('V'), SEL_CPMVAS }, /* Delete from selection buffer */ - { 'X', SEL_RMMUL }, + { 'x', SEL_RMMUL }, /* Delete currently selected */ { CONTROL('X'), SEL_RM }, /* Open in a custom application */ |