From fb4263a7367ab74d746292d1559128e89b2cbdef Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 8 Jul 2017 11:02:17 +0530 Subject: [PATCH] Reset current on empty filter prompt --- nnn.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/nnn.c b/nnn.c index 2fceeaef..45a1a674 100644 --- a/nnn.c +++ b/nnn.c @@ -912,14 +912,9 @@ readln(char *path) redraw(path); printprompt(ln); break; - case KEY_DOWN: // fallthrough - case KEY_UP: // fallthrough - case KEY_LEFT: // fallthrough - case KEY_RIGHT: // fallthrough - case KEY_F(2): - if (len == 1) - cur = oldcur; // fallthrough default: + if (len == 1) + cur = oldcur; goto end; } end: