aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-09-15 22:50:44 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-09-16 01:33:41 +0530
commit7c8df20bea3113c3a4a2dce3f85cb56f43589b31 (patch)
treedebdc8d62cbf6c42edf8d7b09aea46eae3594438 /src
parent5259eb3f614bc3b3003501f3de3c0451fee60f6e (diff)
downloadnnn-7c8df20bea3113c3a4a2dce3f85cb56f43589b31.tar.gz
Key : to run plugin
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c4
-rw-r--r--src/nnn.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/nnn.c b/src/nnn.c
index ee8ff74..cc773de 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -1755,7 +1755,7 @@ static int filterentries(char *path)
switch (*ch) {
case '/': /* works as Leader key in filter mode */
*ch = CONTROL('_'); // fallthrough
- case '>':
+ case ':':
if (len == 1)
cur = oldcur;
goto end;
@@ -2855,7 +2855,7 @@ static bool show_help(const char *path)
"cs Size E Extn t Time modified\n"
"1MISC\n"
"9! ^] Shell ^N Note L Lock \n"
- "9R ^V Pick plugin F12 xK Run plugin key K\n"
+ "9R ^V Pick plugin :K xK Run plugin key K\n"
"cc SSHFS mount u Unmount\n"
"b^P Prompt = Launcher\n"};
diff --git a/src/nnn.h b/src/nnn.h
index c3ccaab..c65d562 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -235,7 +235,7 @@ static struct key bindings[] = {
{ CONTROL(']'), SEL_SHELL },
/* Plugin key */
{ 'x', SEL_PLUGKEY },
- { '>', SEL_PLUGKEY },
+ { ':', SEL_PLUGKEY },
/* Run a plugin */
{ 'R', SEL_PLUGIN },
{ CONTROL('V'), SEL_PLUGIN },