mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Sort order not changing in nav-as-you-type mode
This commit is contained in:
parent
ab521c02a4
commit
16c88770b6
12
src/nnn.c
12
src/nnn.c
|
@ -5037,15 +5037,19 @@ nochange:
|
|||
break;
|
||||
}
|
||||
|
||||
if (cfg.filtermode)
|
||||
presel = FILTER;
|
||||
|
||||
/* Save current */
|
||||
if (ndents)
|
||||
copycurname();
|
||||
|
||||
if (cfg.filtermode || g_ctx[cfg.curctx].c_fltr[1]) {
|
||||
presel = FILTER;
|
||||
break;
|
||||
}
|
||||
/* If there's no filter, reload the directory */
|
||||
if (!g_ctx[cfg.curctx].c_fltr[1])
|
||||
goto begin;
|
||||
|
||||
presel = FILTER; /* If there's a filter, apply it */
|
||||
break;
|
||||
case SEL_STATS: // fallthrough
|
||||
case SEL_CHMODX:
|
||||
if (ndents) {
|
||||
|
|
Loading…
Reference in a new issue