Code refactor

This commit is contained in:
Arun Prakash Jana 2019-12-27 09:26:20 +05:30
parent b455abf944
commit a32b3eac14
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 15 additions and 27 deletions

View File

@ -5460,36 +5460,24 @@ nochange:
break; // fallthrough
}
if (sel == SEL_QUITCD || getenv("NNN_TMPFILE")) {
/* In vim picker mode, clear selection and exit */
if (cfg.picker) {
/* Picker mode: reset buffer or clear file */
selbufpos = 0;
} else if (!write_lastdir(path)) {
presel = MSGWAIT;
goto nochange;
}
}
/* CD on Quit */
/* In vim picker mode, clear selection and exit */
/* Picker mode: reset buffer or clear file */
if (sel == SEL_QUITCD || getenv("NNN_TMPFILE"))
cfg.picker ? selbufpos = 0 : write_lastdir(path);
return;
default:
if (xlines != LINES || xcols != COLS) {
idle = 0;
setdirwatch();
if (ndents)
copycurname();
goto begin;
}
if (xlines != LINES || xcols != COLS)
setdirwatch(); /* Terminal resized */
else if (idletimeout && idle == idletimeout)
lock_terminal(); /* Locker */
else
goto nochange;
/* Locker */
if (idletimeout && idle == idletimeout) {
idle = 0;
lock_terminal();
if (ndents)
copycurname();
goto begin;
}
goto nochange;
idle = 0;
if (ndents)
copycurname();
goto begin;
} /* switch (sel) */
}
}