aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-11-27 18:37:31 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-11-27 18:37:31 +0530
commit28eb6a631296c625d37d0675273779b759b02768 (patch)
tree412c66f5a64aaefd324e889ff5a272b3e7bb8610 /src
parent338b3be7071a164289639cec7bde305ffcc51891 (diff)
downloadnnn-28eb6a631296c625d37d0675273779b759b02768.tar.gz
Use keybind ^T to go to next context
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c2
-rw-r--r--src/nnn.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 6904567..e7733a9 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -1965,7 +1965,7 @@ static int show_help(char *path)
"4→, ↵, l, ^M Open file/enter dir . Toggle show hidden\n"
"e/ Filter Ins, ^I Toggle nav-as-you-type\n"
"eb Pin current dir ^W Go to pinned dir\n"
- "ed Toggle detail view ^B Next active context\n"
+ "ed Toggle detail view ^T Next active context\n"
"a`, ^/ Leader key LeaderN Go to context N\n"
"cEsc Exit prompt ^L Redraw, clear prompt\n"
"d^G Quit and cd q Quit context\n"
diff --git a/src/nnn.h b/src/nnn.h
index f6c8a14..03b3040 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -154,7 +154,7 @@ static struct key bindings[] = {
{ CONTROL('_'), SEL_LEADER, "", "" },
{ '`', SEL_LEADER, "", "" },
/* Cycle contexts in forward direction */
- { CONTROL('B'), SEL_CYCLE, "", "" },
+ { CONTROL('T'), SEL_CYCLE, "", "" },
/* Mark a path to visit later */
{ 'b', SEL_PIN, "", "" },
/* Visit marked directory */