diff options
| author | 2018-12-05 05:44:33 +0530 | |
|---|---|---|
| committer | 2018-12-05 20:43:00 +0530 | |
| commit | 4de4298ffdb05455aa936ca0a91c7f7742f8c2be (patch) | |
| tree | 5eb5a8303b8312409ecc89652c965d31fc1abcb4 /src | |
| parent | 47aa3366c2520eba8da092425612ed64f46fb1ae (diff) | |
| download | nnn-4de4298ffdb05455aa936ca0a91c7f7742f8c2be.tar.gz | |
Map ^I to context cycle
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 4 | ||||
| -rw-r--r-- | src/nnn.h | 1 |
2 files changed, 3 insertions, 2 deletions
@@ -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" @@ -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 */ |