mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
New lowercase keys
This commit is contained in:
parent
44871dd9d7
commit
3ccc6807ed
|
@ -3621,10 +3621,10 @@ static void show_help(const char *path)
|
||||||
"b^R Rename/dup%-14cr Batch rename\n"
|
"b^R Rename/dup%-14cr Batch rename\n"
|
||||||
"cz Archive entry%-11c* Toggle exe\n"
|
"cz Archive entry%-11c* Toggle exe\n"
|
||||||
"5Space ^J (Un)select%-11cm ^K Mark range/clear\n"
|
"5Space ^J (Un)select%-11cm ^K Mark range/clear\n"
|
||||||
"cP Copy sel here%-11ca Select all\n"
|
"cp Copy sel here%-11ca Select all\n"
|
||||||
"cV Move sel here%-10c^V Copy/move sel as\n"
|
"cv Move sel here%-10c^V Copy/move sel as\n"
|
||||||
"cX Delete sel%-13c^X Delete entry\n"
|
"cx Delete sel%-13c^X Delete entry\n"
|
||||||
"9o ^T Order toggle%-11c^W Edit sel\n"
|
"9o ^T Sort toggles%-12ce Edit sel\n"
|
||||||
"1MISC\n"
|
"1MISC\n"
|
||||||
"9; ^P Plugin%-18c= Launch app\n"
|
"9; ^P Plugin%-18c= Launch app\n"
|
||||||
"9! ^] Shell%-19c] Cmd prompt\n"
|
"9! ^] Shell%-19c] Cmd prompt\n"
|
||||||
|
|
|
@ -187,15 +187,15 @@ static struct key bindings[] = {
|
||||||
/* Select all files in current dir */
|
/* Select all files in current dir */
|
||||||
{ 'a', SEL_SELALL },
|
{ 'a', SEL_SELALL },
|
||||||
/* List, edit selection */
|
/* List, edit selection */
|
||||||
{ CONTROL('W'), SEL_SELEDIT },
|
{ 'e', SEL_SELEDIT },
|
||||||
/* Copy from selection buffer */
|
/* Copy from selection buffer */
|
||||||
{ 'P', SEL_CP },
|
{ 'p', SEL_CP },
|
||||||
/* Move from selection buffer */
|
/* Move from selection buffer */
|
||||||
{ 'V', SEL_MV },
|
{ 'v', SEL_MV },
|
||||||
/* Copy/move from selection buffer and rename */
|
/* Copy/move from selection buffer and rename */
|
||||||
{ CONTROL('V'), SEL_CPMVAS },
|
{ CONTROL('V'), SEL_CPMVAS },
|
||||||
/* Delete from selection buffer */
|
/* Delete from selection buffer */
|
||||||
{ 'X', SEL_RMMUL },
|
{ 'x', SEL_RMMUL },
|
||||||
/* Delete currently selected */
|
/* Delete currently selected */
|
||||||
{ CONTROL('X'), SEL_RM },
|
{ CONTROL('X'), SEL_RM },
|
||||||
/* Open in a custom application */
|
/* Open in a custom application */
|
||||||
|
|
Loading…
Reference in a new issue