Ver código fonte

Code refactor

master
Arun Prakash Jana 5 anos atrás
pai
commit
a32b3eac14
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: A75979F35C080412
1 arquivos alterados com 15 adições e 27 exclusões
  1. +15
    -27
      src/nnn.c

+ 15
- 27
src/nnn.c Ver arquivo

@@ -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
Carregando…
Cancelar
Salvar