Start dir watch, preserve cur entry when navigate-as-you-type is disabled

This commit is contained in:
Arun Prakash Jana 2018-02-13 13:28:18 +05:30
parent 19e5990d3a
commit af35b8a27c
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 7 additions and 4 deletions

11
nnn.c
View File

@ -2733,11 +2733,14 @@ nochange:
cfg.filtermode ^= 1; cfg.filtermode ^= 1;
if (cfg.filtermode) if (cfg.filtermode)
presel = FILTER; presel = FILTER;
else if (!ndents) else {
/* If there are no entries refresh to start watching dir */ /* Save current */
if (ndents > 0)
copycurname();
/* Start watching the directory */
goto begin; goto begin;
else }
printmsg("navigate-as-you-type off");
goto nochange; goto nochange;
case SEL_SEARCH: case SEL_SEARCH:
spawn(player, path, "search", NULL, F_NORMAL); spawn(player, path, "search", NULL, F_NORMAL);