Handle some keys as special only if filter is empty

This commit is contained in:
Arun Prakash Jana 2019-12-01 19:58:08 +05:30
parent 130cea3598
commit feb1d2fc27
No known key found for this signature in database
GPG key ID: A75979F35C080412

View file

@ -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;