src/nnn.c | 8 ++++---- src/nnn.h | 8 ++++---- diff --git a/src/nnn.c b/src/nnn.c index 51c407a5a409aa6054967b2b55cfe36a409c8c82..77a2a1c5282aaaea4af99943741f1b6056c4916a 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -3621,10 +3621,10 @@ "cD File details%-12cd Detail view toggle\n" "b^R Rename/dup%-14cr Batch rename\n" "cz Archive entry%-11c* Toggle exe\n" "5Space ^J (Un)select%-11cm ^K Mark range/clear\n" - "cP Copy sel here%-11ca Select all\n" - "cV Move sel here%-10c^V Copy/move sel as\n" - "cX Delete sel%-13c^X Delete entry\n" - "9o ^T Order toggle%-11c^W Edit sel\n" + "cp Copy sel here%-11ca Select all\n" + "cv Move sel here%-10c^V Copy/move sel as\n" + "cx Delete sel%-13c^X Delete entry\n" + "9o ^T Sort toggles%-12ce Edit sel\n" "1MISC\n" "9; ^P Plugin%-18c= Launch app\n" "9! ^] Shell%-19c] Cmd prompt\n" diff --git a/src/nnn.h b/src/nnn.h index c8f97504f8051c32db69f04f2c1cede256bfd004..65967a2031ea8e0d61d72510c38745a0c621a114 100644 --- a/src/nnn.h +++ b/src/nnn.h @@ -187,15 +187,15 @@ { CONTROL('K'), SEL_SELMUL }, /* 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 */