diff options
author | 2019-07-12 14:55:03 +0200 | |
---|---|---|
committer | 2019-07-12 14:55:03 +0200 | |
commit | d640de258963ed174321cd161871da66cf2f4931 (patch) | |
tree | 904f9133997abd89870e2373ff79ae9d21affdb7 /src | |
parent | 78ada7a8bc0f2622af461f54dc80abf10abf6f1c (diff) | |
download | nnn-d640de258963ed174321cd161871da66cf2f4931.tar.gz |
Keep lastname directory selected
incase the user just lost access, it would be better to remember the
selected directory to keep it highlighted.
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3301,6 +3301,9 @@ nochange: if (access(path, F_OK)) { DPRINTF_S("dir deleted or moved"); + /* Save history */ + xstrlcpy(lastname, xbasename(path), NAME_MAX + 1); + xstrlcpy(newpath, path, PATH_MAX); while (true) { dir = visit_parent(path, newpath, &presel); |