mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Handle some keys as special only if filter is empty
This commit is contained in:
parent
130cea3598
commit
feb1d2fc27
|
@ -2085,12 +2085,12 @@ static int filterentries(char *path)
|
||||||
switch (*ch) {
|
switch (*ch) {
|
||||||
case '/': /* works as Leader key in filter mode */
|
case '/': /* works as Leader key in filter mode */
|
||||||
*ch = CONTROL('_'); // fallthrough
|
*ch = CONTROL('_'); // fallthrough
|
||||||
case ':':
|
|
||||||
case ';':
|
|
||||||
if (len == 1)
|
if (len == 1)
|
||||||
cur = oldcur;
|
cur = oldcur;
|
||||||
goto end;
|
goto end;
|
||||||
case '?': /* '?' is an invalid regex, show help instead */
|
case ':': // fallthrough /* Run plugin keys */
|
||||||
|
case ';': // fallthrough
|
||||||
|
case '?': /* Help and config key, '?' is an invalid regex */
|
||||||
if (len == 1) {
|
if (len == 1) {
|
||||||
cur = oldcur;
|
cur = oldcur;
|
||||||
goto end;
|
goto end;
|
||||||
|
|
Loading…
Reference in a new issue