diff options
| author | 2018-01-28 12:23:23 +0530 | |
|---|---|---|
| committer | 2018-01-28 12:23:23 +0530 | |
| commit | 1f87bb3bcbc2b75e1259047fcfc4e24066336226 (patch) | |
| tree | a6a83e77c409a7a02c4f1b19b5a80143b7a6565f | |
| parent | d48e91f01186b5b540c83968422ba94e0dff1148 (diff) | |
| download | nnn-1f87bb3bcbc2b75e1259047fcfc4e24066336226.tar.gz | |
Interpret ^T in filter mode
| -rw-r--r-- | nnn.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 */ |