Browse Source

Code refactor

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

+ 15
- 27
src/nnn.c 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;
}

/* Locker */
if (idletimeout && idle == idletimeout) {
idle = 0;
lock_terminal();
if (ndents)
copycurname();
goto begin;
}
if (xlines != LINES || xcols != COLS)
setdirwatch(); /* Terminal resized */
else if (idletimeout && idle == idletimeout)
lock_terminal(); /* Locker */
else
goto nochange;

goto nochange;
idle = 0;
if (ndents)
copycurname();
goto begin;
} /* switch (sel) */
}
}


||||||
x
 
000:0
Loading…
Cancel
Save