Hover next file on delete

This commit is contained in:
Arun Prakash Jana 2020-02-28 07:34:02 +05:30
parent fc805dac26
commit 76cf0c65d4
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 9 additions and 5 deletions

View File

@ -5700,18 +5700,22 @@ nochange:
}
if (r == 'c') {
tmp = (g_listpath && xstrcmp(path, g_listpath) == 0) ? g_prefixpath : path;
tmp = (g_listpath && xstrcmp(path, g_listpath) == 0)
? g_prefixpath : path;
mkpath(tmp, dents[cur].name, newpath);
xrm(newpath);
if (cur && access(newpath, F_OK) == -1) {
move_cursor(cur - 1, 0);
if (cfg.filtermode)
presel = FILTER;
if (access(newpath, F_OK) == 0) /* File not removed */
goto nochange;
else if (cur) {
cur += (cur != (ndents - 1)) ? 1 : -1;
copycurname();
} else
lastname[0] = '\0';
if (cfg.filtermode)
presel = FILTER;
goto begin;
}
}