Browse Source

Pin current path on archive/remote mount

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

+ 8
- 0
src/nnn.c View File

@@ -5737,6 +5737,10 @@ nochange:
goto nochange; goto nochange;
} }


/* Pin current directory */
free(mark);
mark = xstrdup(path);

cdprep(lastdir, lastname, path, newpath) cdprep(lastdir, lastname, path, newpath)
? (presel = FILTER) : (watch = TRUE); ? (presel = FILTER) : (watch = TRUE);
goto begin; goto begin;
@@ -5827,6 +5831,10 @@ nochange:
goto nochange; goto nochange;
} }


/* Pin current directory */
free(mark);
mark = xstrdup(path);

/* In list mode, retain the last file name to highlight it, if possible */ /* In list mode, retain the last file name to highlight it, if possible */
cdprep(lastdir, listpath && sel == SEL_CDLAST ? NULL : lastname, path, newpath) cdprep(lastdir, listpath && sel == SEL_CDLAST ? NULL : lastname, path, newpath)
? (presel = FILTER) : (watch = TRUE); ? (presel = FILTER) : (watch = TRUE);


Loading…
Cancel
Save