Browse Source

Code refactor

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

+ 5
- 9
src/nnn.c View File

@@ -5400,21 +5400,17 @@ nochange:
case SEL_SESSIONS:
r = get_input(messages[MSG_SSN_OPTS]);

if (r == 's') {
if (r == 's')
save_session(FALSE, &presel);
goto nochange;
}

if (r == 'l' || r == 'r') {
else if (r == 'l' || r == 'r') {
if (load_session(NULL, &path, &lastdir, &lastname, r == 'r')) {
setdirwatch();
goto begin;
}

presel = MSGWAIT;
goto nochange;
}
break;

clearprompt();
goto nochange;
case SEL_QUITCTX: // fallthrough
case SEL_QUITCD: // fallthrough
case SEL_QUIT:


Loading…
Cancel
Save