aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-01-29 23:40:27 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-01-29 23:40:46 +0530
commitcfb524ea5e1ecaa7c0eb0ab2fbb6675e298eb31d (patch)
treefae02732c43f06653ab6e1cc447320c42c06342f /src
parentb1b1f90d113889559ce9f2569b6061d67180f8d4 (diff)
downloadnnn-cfb524ea5e1ecaa7c0eb0ab2fbb6675e298eb31d.tar.gz
Fix #200: bind ^P to show command prompt
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 714750e..aec526b 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -2298,7 +2298,7 @@ static bool show_help(char *path)
"1MISC\n"
"8!, ^] Spawn SHELL in dir C Execute entry\n"
"8R, ^V Run custom script L Lock terminal\n"
- "b^S Run a command N, ^N Take note\n"};
+ "b^P Command prompt N, ^N Take note\n"};
if (fd == -1)
return FALSE;
diff --git a/src/nnn.h b/src/nnn.h
index 38842da..e105a25 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -219,7 +219,7 @@ static struct key bindings[] = {
{ 'R', SEL_SCRIPT },
{ CONTROL('V'), SEL_SCRIPT },
/* Run a command */
- { CONTROL('S'), SEL_RUNCMD },
+ { CONTROL('P'), SEL_RUNCMD },
/* Open in EDITOR or PAGER */
{ 'e', SEL_RUNEDIT },
{ 'p', SEL_RUNPAGE },