diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 4 | ||||
-rw-r--r-- | src/nnn.h | 3 |
2 files changed, 4 insertions, 3 deletions
@@ -2829,12 +2829,12 @@ static bool show_help(const char *path) "7Tab ^I Next context d Toggle detail view\n" "9, ^/ Lead key N LeadN Context N\n" "c/ Filter/Lead Ins ^T Toggle nav-as-you-type\n" - "aEsc Exit prompt ^L Redraw/clear prompt\n" + "aEsc Exit prompt ^L F5 Redraw/clear prompt\n" "cq Quit context Lead' First file\n" "9Q ^Q Quit ^G QuitCD ? Help, config\n" "1FILES\n" "b^O Open with... n Create new/link\n" - "cD File details ^R Rename/duplicate\n" + "cD File detail ^R F2 Rename/duplicate\n" "5⎵ ^K / Y Select entry/all r Batch rename\n" "9K ^Y Toggle selection y List selection\n" "cP Copy selection X Delete selection\n" @@ -200,6 +200,7 @@ static struct key bindings[] = { { 't', SEL_MTIME }, /* Redraw window */ { CONTROL('L'), SEL_REDRAW }, + { KEY_F(5), SEL_REDRAW }, /* Copy currently selected file path */ { CONTROL('K'), SEL_SEL }, { ' ', SEL_SEL }, @@ -224,7 +225,7 @@ static struct key bindings[] = { { 'n', SEL_NEW }, /* Show rename prompt */ { CONTROL('R'), SEL_RENAME }, - { KEY_F(2), SEL_RENAME }, // undocumented + { KEY_F(2), SEL_RENAME }, /* Rename contents of current dir */ { 'r', SEL_RENAMEALL }, /* Connect to server over SSHFS */ |