diff options
| author | 2019-09-15 19:11:10 +0530 | |
|---|---|---|
| committer | 2019-09-15 19:11:10 +0530 | |
| commit | 6c39d87cdffa50921b984ba4e9a4be536deb88ad (patch) | |
| tree | 7cb628a8c11ae52c251fe5836adda18ff9677e5d /src | |
| parent | e68e8ad8a5ecbb58b776c04574b55e3c60936f93 (diff) | |
| download | nnn-6c39d87cdffa50921b984ba4e9a4be536deb88ad.tar.gz | |
Key > to run plugin
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 1 | ||||
| -rw-r--r-- | src/nnn.h | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1751,6 +1751,7 @@ static int filterentries(char *path) switch (*ch) { case '/': /* works as Leader key in filter mode */ *ch = CONTROL('_'); // fallthrough + case '>': if (len == 1) cur = oldcur; goto end; @@ -235,7 +235,7 @@ static struct key bindings[] = { { CONTROL(']'), SEL_SHELL }, /* Plugin key */ { 'x', SEL_PLUGKEY }, - { KEY_F(12), SEL_PLUGKEY }, + { '>', SEL_PLUGKEY }, /* Run a plugin */ { 'R', SEL_PLUGIN }, { CONTROL('V'), SEL_PLUGIN }, |