aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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 },