Got to last dir on '~' or '/' key repeat

This commit is contained in:
Arun Prakash Jana 2021-04-17 20:25:58 +05:30
parent 430833326b
commit 69431e49a9
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 6 additions and 3 deletions

View File

@ -6329,9 +6329,12 @@ nochange:
}
if (strcmp(path, dir) == 0) {
if (cfg.filtermode)
presel = FILTER;
goto nochange;
if (dir == ipath) {
if (cfg.filtermode)
presel = FILTER;
goto nochange;
}
dir = lastdir; /* Go to last dir on home/root key repeat */
}
if (chdir(dir) == -1) {