aboutsummaryrefslogtreecommitdiffstats
path: root/nnn.c
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-02-24 10:43:06 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-02-24 10:43:06 +0530
commita963d166c82c4d6177125e78c9ced97c4d82b661 (patch)
tree074459b94b9fe2357afe5a25191c543fdcdec33a /nnn.c
parentd0a08ca173012888fb83d5f1981a38b05ea3c40c (diff)
downloadnnn-a963d166c82c4d6177125e78c9ced97c4d82b661.tar.gz
Enable file extract in nav-as-you-type mode
Diffstat (limited to 'nnn.c')
-rw-r--r--nnn.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nnn.c b/nnn.c
index e7e791b..1161de7 100644
--- a/nnn.c
+++ b/nnn.c
@@ -1125,6 +1125,7 @@ filterentries(char *path)
goto end;
case CONTROL('L'): // fallthrough
case CONTROL('K'): // fallthrough
+ case CONTROL('Y'): // fallthrough
case CONTROL('_'): // fallthrough
case CONTROL('R'): // fallthrough
case CONTROL('O'): // fallthrough
@@ -1132,7 +1133,7 @@ filterentries(char *path)
case CONTROL('V'): // fallthrough
case CONTROL('J'): // fallthrough
case CONTROL('X'): // fallthrough
- case CONTROL('Y'): // fallthrough
+ case CONTROL('F'): // fallthrough
case CONTROL('T'):
if (len == 1)
cur = oldcur;