From 1f87bb3bcbc2b75e1259047fcfc4e24066336226 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sun, 28 Jan 2018 12:23:23 +0530 Subject: [PATCH] Interpret ^T in filter mode --- nnn.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nnn.c b/nnn.c index d9fa5c10..15c35aeb 100644 --- a/nnn.c +++ b/nnn.c @@ -1115,9 +1115,10 @@ filterentries(char *path) case CONTROL('V'): // fallthrough case CONTROL('J'): // fallthrough case CONTROL('X'): // fallthrough - case CONTROL('Y'): + case CONTROL('Y'): // fallthrough + case CONTROL('T'): if (len == 1) - cur = oldcur; // fallthrough + cur = oldcur; goto end; default: /* Reset cur in case it's a repeat search */