diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-10-17 23:35:49 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-10-17 23:35:49 +0530 |
commit | 2da5602a4f7bff17d43c939e7329aab34e2a85f9 (patch) | |
tree | 7ba8dadf1599d3f8d0a340af5a9e92c1c8f067a4 /src/nnn.h | |
parent | 522626a88dffb820cc14be707ce0e6940df42e88 (diff) | |
download | nnn-2da5602a4f7bff17d43c939e7329aab34e2a85f9.tar.gz |
Use a single keybind for cp/mv as
Diffstat (limited to 'src/nnn.h')
-rw-r--r-- | src/nnn.h | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -82,8 +82,7 @@ enum action { SEL_SELEDIT, SEL_CP, SEL_MV, - SEL_CPAS, - SEL_MVAS, + SEL_CPMVAS, SEL_RMMUL, SEL_RM, SEL_OPENWITH, @@ -219,10 +218,8 @@ static struct key bindings[] = { { 'P', SEL_CP }, /* Move from selection buffer */ { 'V', SEL_MV }, - /* Copyfrom selection buffer and rename */ - { 'w', SEL_CPAS }, - /* Movefrom selection buffer and rename */ - { 'W', SEL_MVAS }, + /* Copy/move from selection buffer and rename */ + { 'w', SEL_CPMVAS }, /* Delete from selection buffer */ { 'X', SEL_RMMUL }, /* Delete currently selected */ |