diff options
author | 2020-04-24 09:54:43 +0530 | |
---|---|---|
committer | 2020-04-24 09:54:43 +0530 | |
commit | 752bc67de03d158ece3f0fb43f6f2a3e6b2011b9 (patch) | |
tree | 5d6ac4e0c9dbadabbfd9681b04635e78f1363614 /src | |
parent | b11bdc936105038abfdbed9b98e7b4e7b645e221 (diff) | |
download | nnn-752bc67de03d158ece3f0fb43f6f2a3e6b2011b9.tar.gz |
Bookmark key get priority over session
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -6510,8 +6510,8 @@ static void usage(void) " PATH start dir [default: .]\n\n" "optional args:\n" " -A no dir auto-select\n" - " -b key open bookmark key\n" - " -c cli-only opener (overrides -e)\n" + " -b key open bookmark key (trumps -s/S)\n" + " -c cli-only NNN_OPENER (trumps -e)\n" " -d detail mode\n" " -e text in $VISUAL/$EDITOR/vi\n" " -E use EDITOR for undetached edits\n" @@ -6853,6 +6853,9 @@ int main(int argc, char *argv[]) fprintf(stderr, "%s\n", messages[MSG_INVALID_KEY]); return _FAILURE; } + + if (session) + session = NULL; } else if (argc == optind) { /* Start in the current directory */ initpath = getcwd(NULL, PATH_MAX); |