Browse Source

Clear filter on a manual dir relaod

master
Arun Prakash Jana 5 years ago
parent
commit
eaba594a9e
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/nnn.c

+ 2
- 1
src/nnn.c View File

@@ -2225,7 +2225,8 @@ static int nextsel(int presel)

if (c == ERR && presel == MSGWAIT)
c = (cfg.filtermode) ? FILTER : CONTROL('L');
else if (c == FILTER) /* Clear previous filter when manually starting */
else if (c == FILTER || c == CONTROL('L'))
/* Clear previous filter when manually starting */
clearfilter();
}



Loading…
Cancel
Save