Browse Source

Map ^I to context cycle

master
Arun Prakash Jana 6 years ago
parent
commit
4de4298ffd
No known key found for this signature in database GPG Key ID: A75979F35C080412
4 changed files with 7 additions and 6 deletions
  1. +2
    -2
      README.md
  2. +2
    -2
      nnn.1
  3. +2
    -2
      src/nnn.c
  4. +1
    -0
      src/nnn.h

+ 2
- 2
README.md View File

@@ -221,9 +221,9 @@ Press <kbd>?</kbd> in `nnn` to see the list anytime.
End, G, $, ^E Last entry & Start dir
←, Bksp, h, ^H Parent dir - Last visited dir
→, ↵, l, ^M Open file/enter dir . Toggle show hidden
/ Filter Ins, ^I Toggle nav-as-you-type
/ Filter Ins, ^T Toggle nav-as-you-type
b Pin current dir ^W Go to pinned dir
Tab, ^T Next context d Toggle detail view
Tab, ^I Next context d Toggle detail view
`, ^/ Leader key LeaderN Go to/create context N
Esc Exit prompt ^L Redraw, clear prompt
^G Quit and cd q Quit context


+ 2
- 2
nnn.1 View File

@@ -58,7 +58,7 @@ Change to the last visited directory
Toggle show hidden . (dot) files
.It Ic /
Change filter (more information below)
.It Ic [Insert], ^I
.It Ic [Insert], ^T
Toggle navigate-as-you-type mode
.It Ic b
Pin current directory
@@ -66,7 +66,7 @@ Pin current directory
Visit pinned directory
.It Ic d
Toggle detail view
.It Ic Tab, ^T
.It Ic Tab, ^I
Next context, ask to create if none
.It Ic `, ^/
Leader key


+ 2
- 2
src/nnn.c View File

@@ -2023,9 +2023,9 @@ static int show_help(char *path)
"2End, G, $, ^E Last entry & Start dir\n"
"1←, Bksp, h, ^H Parent dir - Last visited dir\n"
"4→, ↵, l, ^M Open file/enter dir . Toggle show hidden\n"
"e/ Filter Ins, ^I Toggle nav-as-you-type\n"
"e/ Filter Ins, ^T Toggle nav-as-you-type\n"
"eb Pin current dir ^W Go to pinned dir\n"
"8Tab, ^T Next context d Toggle detail view\n"
"8Tab, ^I Next context d Toggle detail view\n"
"a`, ^/ Leader key LeaderN Go to/create context N\n"
"cEsc Exit prompt ^L Redraw, clear prompt\n"
"d^G Quit and cd q Quit context\n"


+ 1
- 0
src/nnn.h View File

@@ -145,6 +145,7 @@ static struct key bindings[] = {
{ '`', SEL_LEADER },
/* Cycle contexts in forward direction */
{ '\t', SEL_CYCLE },
{ CONTROL('I'), SEL_CYCLE },
/* Mark a path to visit later */
{ 'b', SEL_PIN },
/* Visit marked directory */


Loading…
Cancel
Save