aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-11-17 05:36:39 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-11-17 05:36:39 +0530
commit05c84f7b80872062eaf15bdfbb45e43161bd7eeb (patch)
treed8b3aeadea337a826d7b052a2c7df9bedc22b472 /src
parente3aed0f658e654a33a651e39c5cf13601520d430 (diff)
downloadnnn-05c84f7b80872062eaf15bdfbb45e43161bd7eeb.tar.gz
Clear prompt after running a command.
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 5c9ad71..7ee23ad 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -1976,6 +1976,16 @@ static int filterentries(char *path)
/* If there's a filter, try a command on ^P */
if (cfg.filtercmd && *ch == CONTROL('P') && len > 1) {
prompt_run(pln, (ndents ? dents[cur].name : ""), path);
+
+ /* Clear the prompt */
+ while (len > 1)
+ wln[--len] = '\0';
+ wcstombs(ln, wln, REGEX_MAX);
+ ndents = total;
+ if (matches(pln) != -1)
+ redraw(path);
+
+ printprompt(ln);
continue;
}