aboutsummaryrefslogtreecommitdiffstats
path: root/src/nnn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nnn.c')
-rw-r--r--src/nnn.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nnn.c b/src/nnn.c
index c5ae00c..ac7c9bb 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -5033,7 +5033,9 @@ nochange:
namecmpfn = (namecmpfn == &xstrverscasecmp) ? &xstricmp : &xstrverscasecmp;
break;
default:
- cfg.filtermode ? presel = FILTER : statusbar(path);
+ if (cfg.filtermode)
+ presel = FILTER;
+ printwait(messages[MSG_INVALID_KEY], &presel);
goto nochange;
}
}