diff options
| author | 2020-05-31 23:05:27 +0530 | |
|---|---|---|
| committer | 2020-05-31 23:05:59 +0530 | |
| commit | 7263a5f89b9eb16a7dceba5a4913b7c2eba803b4 (patch) | |
| tree | df4de394968662c6e06fa6dc0a9889eca2faf349 /src | |
| parent | 4a2d978630333a72a23571c323d9a005c2cf57c1 (diff) | |
| download | nnn-7263a5f89b9eb16a7dceba5a4913b7c2eba803b4.tar.gz | |
Do not auto-revive filter in nav-to-type mode
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -6491,20 +6491,16 @@ nochange: cfg.picker ? selbufpos = 0 : write_lastdir(path); return sel == SEL_QUITFAIL ? EXIT_FAILURE : EXIT_SUCCESS; default: - r = FALSE; - if (xlines != LINES || xcols != COLS) { - setdirwatch(); /* Terminal resized */ - r = TRUE; - } else if (idletimeout && idle == idletimeout) + if (xlines != LINES || xcols != COLS) + continue; + + if (idletimeout && idle == idletimeout) lock_terminal(); /* Locker */ idle = 0; if (ndents) copycurname(); - if (r) - continue; - goto nochange; } /* switch (sel) */ } |