aboutsummaryrefslogtreecommitdiffstats
path: root/src/nnn.h
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-10-17 23:35:49 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-10-17 23:35:49 +0530
commit2da5602a4f7bff17d43c939e7329aab34e2a85f9 (patch)
tree7ba8dadf1599d3f8d0a340af5a9e92c1c8f067a4 /src/nnn.h
parent522626a88dffb820cc14be707ce0e6940df42e88 (diff)
downloadnnn-2da5602a4f7bff17d43c939e7329aab34e2a85f9.tar.gz
Use a single keybind for cp/mv as
Diffstat (limited to 'src/nnn.h')
-rw-r--r--src/nnn.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/nnn.h b/src/nnn.h
index b6f4886..88d9011 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -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 */