mirror of
https://github.com/jarun/nnn.git
synced 2025-03-12 17:54:04 +00:00
key ^Y is now ^S, key ^K is now ^J, kwy ' is now m
This commit is contained in:
parent
318ddd2ca6
commit
9d23517d10
2 changed files with 5 additions and 5 deletions
|
@ -2855,8 +2855,8 @@ static bool show_help(const char *path)
|
|||
"1FILES\n"
|
||||
"b^O Open with... n Create new/link\n"
|
||||
"cD File detail ^R F2 Rename/duplicate\n"
|
||||
"5⎵ ^K / a Select entry/all r Batch rename\n"
|
||||
"9' ^Y Toggle selection y List selection\n"
|
||||
"5⎵ ^J / a Select entry/all r Batch rename\n"
|
||||
"9m ^S Toggle multi sel y List selection\n"
|
||||
"cP Copy selection X Delete selection\n"
|
||||
"cV Move selection ^X Delete entry\n"
|
||||
"cf Create archive C Execute entry\n"
|
||||
|
|
|
@ -195,11 +195,11 @@ static struct key bindings[] = {
|
|||
{ CONTROL('L'), SEL_REDRAW },
|
||||
{ KEY_F(5), SEL_REDRAW },
|
||||
/* Select current file path */
|
||||
{ CONTROL('K'), SEL_SEL },
|
||||
{ CONTROL('J'), SEL_SEL },
|
||||
{ ' ', SEL_SEL },
|
||||
/* Toggle select multiple files */
|
||||
{ '\'', SEL_SELMUL },
|
||||
{ CONTROL('Y'), SEL_SELMUL },
|
||||
{ 'm', SEL_SELMUL },
|
||||
{ CONTROL('S'), SEL_SELMUL },
|
||||
/* Select all files in current dir */
|
||||
{ 'a', SEL_SELALL },
|
||||
/* Show list of copied files */
|
||||
|
|
Loading…
Add table
Reference in a new issue