Update help

This commit is contained in:
Arun Prakash Jana 2018-04-01 23:39:51 +05:30
parent 1653414039
commit f09bd47f26
No known key found for this signature in database
GPG Key ID: A75979F35C080412
3 changed files with 27 additions and 27 deletions

View File

@ -201,22 +201,22 @@ optional arguments:
``` ```
Key | Function Key | Function
- + - - + -
↑, k, ^P | Previous entry ↑, k, ^P | Prev entry
↓, j, ^N | Next entry ↓, j, ^N | Next entry
PgUp, ^U | Scroll half page up PgUp, ^U | Scroll half page up
PgDn, ^D | Scroll half page down PgDn, ^D | Scroll half page down
Home, g, ^, ^A | First entry Home, g, ^, ^A | First entry
End, G, $, ^E | Fast entry End, G, $, ^E | Last entry
→, ↵, l, ^M | Open file or enter dir →, ↵, l, ^M | Open file/enter dir
←, Bksp, h, ^H | Go to parent dir ←, Bksp, h, ^H | Parent dir
^O | Open with... ^O | Open with...
Insert, ^I | Toggle navigate-as-you-type Insert, ^I | Toggle nav-as-you-type
~ | Go HOME ~ | Go HOME
& | Go to initial dir & | Start-up dir
- | Go to last visited dir - | Last visited dir
/ | Filter dir contents / | Filter entries
^/ | Open desktop search tool ^/ | Open desktop search app
. | Toggle hide . files . | Toggle show . files
^B | Bookmark prompt ^B | Bookmark prompt
b | Pin current dir b | Pin current dir
^V | Go to pinned dir ^V | Go to pinned dir
@ -234,15 +234,15 @@ optional arguments:
!, ^] | Spawn SHELL in dir !, ^] | Spawn SHELL in dir
R | Run custom script R | Run custom script
e | Edit entry in EDITOR e | Edit entry in EDITOR
o | Open dir in file manager o | Open DE filemanager
p | Open entry in PAGER p | Open entry in PAGER
F | List archive F | List archive
^F | Extract archive ^F | Extract archive
^K | Invoke file path copier ^K | Copy file path
^Y | Toggle multi-copy mode ^Y | Toggle multi-copy
^T | Toggle path quote ^T | Toggle path quote
^L | Redraw, clear prompt ^L | Redraw, clear prompt
L | Lock terminal (on Linux) L | Lock terminal
? | Help, settings ? | Help, settings
Q, ^G | Quit and cd Q, ^G | Quit and cd
q, ^X | Quit q, ^X | Quit

2
nnn.1
View File

@ -61,7 +61,7 @@ Change filter (more information below)
.It Ic ^/ .It Ic ^/
Search directory in desktop search tool Search directory in desktop search tool
.It Ic \&. .It Ic \&.
Toggle hide .dot files Toggle show hidden . (dot) files
.It Ic ^B .It Ic ^B
Show bookmark key prompt Show bookmark key prompt
.It Ic b .It Ic b

24
nnn.c
View File

@ -1931,22 +1931,22 @@ show_help(char *path)
static char helpstr[] = ( static char helpstr[] = (
"cKey | Function\n" "cKey | Function\n"
"e- + -\n" "e- + -\n"
"7↑, k, ^P | Previous entry\n" "7↑, k, ^P | Prev entry\n"
"7↓, j, ^N | Next entry\n" "7↓, j, ^N | Next entry\n"
"7PgUp, ^U | Scroll half page up\n" "7PgUp, ^U | Scroll half page up\n"
"7PgDn, ^D | Scroll half page down\n" "7PgDn, ^D | Scroll half page down\n"
"1Home, g, ^, ^A | First entry\n" "1Home, g, ^, ^A | First entry\n"
"2End, G, $, ^E | Last entry\n" "2End, G, $, ^E | Last entry\n"
"4→, ↵, l, ^M | Open file or enter dir\n" "4→, ↵, l, ^M | Open file/enter dir\n"
"1←, Bksp, h, ^H | Go to parent dir\n" "1←, Bksp, h, ^H | Parent dir\n"
"d^O | Open with...\n" "d^O | Open with...\n"
"5Insert, ^I | Toggle navigate-as-you-type\n" "5Insert, ^I | Toggle nav-as-you-type\n"
"e~ | Go HOME\n" "e~ | Go HOME\n"
"e& | Go to initial dir\n" "e& | Start-up dir\n"
"e- | Go to last visited dir\n" "e- | Last visited dir\n"
"e/ | Filter dir contents\n" "e/ | Filter entries\n"
"d^/ | Open desktop search tool\n" "d^/ | Open desktop search app\n"
"e. | Toggle hide . files\n" "e. | Toggle show . files\n"
"d^B | Bookmark prompt\n" "d^B | Bookmark prompt\n"
"eb | Pin current dir\n" "eb | Pin current dir\n"
"d^V | Go to pinned dir\n" "d^V | Go to pinned dir\n"
@ -1964,12 +1964,12 @@ show_help(char *path)
"a!, ^] | Spawn SHELL in dir\n" "a!, ^] | Spawn SHELL in dir\n"
"eR | Run custom script\n" "eR | Run custom script\n"
"ee | Edit entry in EDITOR\n" "ee | Edit entry in EDITOR\n"
"eo | Open dir in file manager\n" "eo | Open DE filemanager\n"
"ep | Open entry in PAGER\n" "ep | Open entry in PAGER\n"
"eF | List archive\n" "eF | List archive\n"
"d^F | Extract archive\n" "d^F | Extract archive\n"
"d^K | Invoke file path copier\n" "d^K | Copy file path\n"
"d^Y | Toggle multi-copy mode\n" "d^Y | Toggle multi-copy\n"
"d^T | Toggle path quote\n" "d^T | Toggle path quote\n"
"d^L | Redraw, clear prompt\n" "d^L | Redraw, clear prompt\n"
#ifdef __linux__ #ifdef __linux__