mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Interpret ^T in filter mode
This commit is contained in:
parent
d48e91f011
commit
1f87bb3bcb
5
nnn.c
5
nnn.c
|
@ -1115,9 +1115,10 @@ filterentries(char *path)
|
||||||
case CONTROL('V'): // fallthrough
|
case CONTROL('V'): // fallthrough
|
||||||
case CONTROL('J'): // fallthrough
|
case CONTROL('J'): // fallthrough
|
||||||
case CONTROL('X'): // fallthrough
|
case CONTROL('X'): // fallthrough
|
||||||
case CONTROL('Y'):
|
case CONTROL('Y'): // fallthrough
|
||||||
|
case CONTROL('T'):
|
||||||
if (len == 1)
|
if (len == 1)
|
||||||
cur = oldcur; // fallthrough
|
cur = oldcur;
|
||||||
goto end;
|
goto end;
|
||||||
default:
|
default:
|
||||||
/* Reset cur in case it's a repeat search */
|
/* Reset cur in case it's a repeat search */
|
||||||
|
|
Loading…
Reference in a new issue