mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
order toggle: show invalid key prompt (#433)
* order toggle: show invalid key prompt * don't call statusbar()
This commit is contained in:
parent
97a50c6622
commit
101d4e8a07
|
@ -5033,7 +5033,9 @@ nochange:
|
||||||
namecmpfn = (namecmpfn == &xstrverscasecmp) ? &xstricmp : &xstrverscasecmp;
|
namecmpfn = (namecmpfn == &xstrverscasecmp) ? &xstricmp : &xstrverscasecmp;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
cfg.filtermode ? presel = FILTER : statusbar(path);
|
if (cfg.filtermode)
|
||||||
|
presel = FILTER;
|
||||||
|
printwait(messages[MSG_INVALID_KEY], &presel);
|
||||||
goto nochange;
|
goto nochange;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue