Browse Source

Key : to run plugin

master
Arun Prakash Jana 5 years ago
parent
commit
7c8df20bea
No known key found for this signature in database GPG Key ID: A75979F35C080412
3 changed files with 4 additions and 4 deletions
  1. +1
    -1
      README.md
  2. +2
    -2
      src/nnn.c
  3. +1
    -1
      src/nnn.h

+ 1
- 1
README.md View File

@@ -259,7 +259,7 @@ Press <kbd>?</kbd> in `nnn` to see the list anytime.
s Size E Extn t Time modified
MISC
! ^] Shell ^N Note L Lock
R ^V Pick plugin F12 xK Run plugin key K
R ^V Pick plugin :K xK Run plugin key K
c SSHFS mount u Unmount
^P Prompt = Launcher
```


+ 2
- 2
src/nnn.c View File

@@ -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"};



+ 1
- 1
src/nnn.h View File

@@ -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 },


Loading…
Cancel
Save