mirror of
https://github.com/jarun/nnn.git
synced 2025-04-19 03:45:01 +00:00
Print prompt even on no matches
This commit is contained in:
parent
e3a70a2483
commit
f55e797d24
1 changed files with 3 additions and 3 deletions
6
nnn.c
6
nnn.c
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue