diff options
| author | 2018-08-28 22:51:26 +0530 | |
|---|---|---|
| committer | 2018-08-28 22:51:26 +0530 | |
| commit | f55e797d24187edb843d3f3e1a49bc30735946e7 (patch) | |
| tree | 6f604e69c35b8b8d2ca41f1b18d767b0753b9082 | |
| parent | e3a70a248347367fbe9d7ea449ab3e0f9d777276 (diff) | |
| download | nnn-f55e797d24187edb843d3f3e1a49bc30735946e7.tar.gz | |
Print prompt even on no matches
| -rw-r--r-- | nnn.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1077,9 +1077,9 @@ filterentries(char *path) wcstombs(ln, wln, REGEX_MAX); ndents = total; - if (matches(pln) == -1) - continue; - redraw(path); + if (matches(pln) != -1) + redraw(path); + printprompt(ln); continue; } |