mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Key ^N replaces ^T to toggle nav mode
This commit is contained in:
parent
14c355bacf
commit
2f4144b0bd
|
@ -198,7 +198,7 @@ The list below is from the **dev branch**. Press <kbd>?</kbd> in `nnn` to see th
|
||||||
b Pin current dir ^B Go to pinned dir
|
b Pin current dir ^B Go to pinned dir
|
||||||
(Sh)Tab Cycle context d Toggle detail view
|
(Sh)Tab Cycle context d Toggle detail view
|
||||||
, ^/ Lead key N LeadN Context N
|
, ^/ Lead key N LeadN Context N
|
||||||
/ Filter/Lead Ins ^T Toggle nav-as-you-type
|
/ Filter/Lead Ins ^N Toggle nav-as-you-type
|
||||||
Esc Exit prompt ^L F5 Redraw/clear prompt
|
Esc Exit prompt ^L F5 Redraw/clear prompt
|
||||||
? Help, conf ' Lead' First file
|
? Help, conf ' Lead' First file
|
||||||
Q ^Q Quit ^G QuitCD q Quit context
|
Q ^Q Quit ^G QuitCD q Quit context
|
||||||
|
|
|
@ -2825,7 +2825,7 @@ static void show_help(const char *path)
|
||||||
"cb Pin current dir ^B Go to pinned dir\n"
|
"cb Pin current dir ^B Go to pinned dir\n"
|
||||||
"6(Sh)Tab Next context d Toggle detail view\n"
|
"6(Sh)Tab Next context d Toggle detail view\n"
|
||||||
"9, ^/ Lead key N LeadN Context N\n"
|
"9, ^/ Lead key N LeadN Context N\n"
|
||||||
"c/ Filter/Lead Ins ^T Toggle nav-as-you-type\n"
|
"c/ Filter/Lead Ins ^N Toggle nav-as-you-type\n"
|
||||||
"aEsc Exit prompt ^L F5 Redraw/clear prompt\n"
|
"aEsc Exit prompt ^L F5 Redraw/clear prompt\n"
|
||||||
"c? Help, conf ' Lead' First file\n"
|
"c? Help, conf ' Lead' First file\n"
|
||||||
"9Q ^Q Quit ^G QuitCD q Quit context\n"
|
"9Q ^Q Quit ^G QuitCD q Quit context\n"
|
||||||
|
|
|
@ -173,7 +173,7 @@ static struct key bindings[] = {
|
||||||
{ '/', SEL_FLTR },
|
{ '/', SEL_FLTR },
|
||||||
/* Toggle filter mode */
|
/* Toggle filter mode */
|
||||||
{ KEY_IC, SEL_MFLTR },
|
{ KEY_IC, SEL_MFLTR },
|
||||||
{ CONTROL('T'), SEL_MFLTR },
|
{ CONTROL('N'), SEL_MFLTR },
|
||||||
/* Toggle hide .dot files */
|
/* Toggle hide .dot files */
|
||||||
{ '.', SEL_TOGGLEDOT },
|
{ '.', SEL_TOGGLEDOT },
|
||||||
/* Detailed listing */
|
/* Detailed listing */
|
||||||
|
|
Loading…
Reference in a new issue