diff options
author | 2019-02-05 23:58:13 +0530 | |
---|---|---|
committer | 2019-02-05 23:58:13 +0530 | |
commit | f21ec611cd648d7a340a7d02ad442a4fa7ac96c4 (patch) | |
tree | 6c20b1ec1f66071eb6669cfdc9d1a0d0896517bf /src | |
parent | 336eca300a3ed466172b1ca67bc610f230267053 (diff) | |
download | nnn-f21ec611cd648d7a340a7d02ad442a4fa7ac96c4.tar.gz |
Replace backquote with comma as leader key
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 2 | ||||
-rw-r--r-- | src/nnn.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2382,7 +2382,7 @@ static bool show_help(char *path) "c/ Filter Ins ^T Toggle nav-as-you-type\n" "cb Pin current dir ^B Go to pinned dir\n" "7Tab ^I Next context d Toggle detail view\n" - "9` ^/ Leader key N LeadN Go to/create context N\n" + "9, ^/ Leader key N LeadN Go to/create context N\n" "aEsc Exit prompt ^L Redraw/clear prompt\n" "b^G Quit and cd q Quit context\n" "9Q ^Q Quit ? Help, config\n" @@ -143,7 +143,7 @@ static struct key bindings[] = { { CONTROL('B'), SEL_VISIT }, /* Leader key */ { CONTROL('_'), SEL_LEADER }, - { '`', SEL_LEADER }, + { ',', SEL_LEADER }, /* Cycle contexts in forward direction */ { '\t', SEL_CYCLE }, { CONTROL('I'), SEL_CYCLE }, |