Przeglądaj źródła

Exit prompt on ^D at empty prompt

master
Arun Prakash Jana 5 lat temu
rodzic
commit
e3d80da2ad
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: A75979F35C080412
1 zmienionych plików z 6 dodań i 2 usunięć
  1. +6
    -2
      src/nnn.c

+ 6
- 2
src/nnn.c Wyświetl plik

@@ -2412,8 +2412,12 @@ static char *xreadline(const char *prefill, const char *prompt)
case CONTROL('D'):
if (pos < len)
++pos;
else
continue; // fallthrough
else if (!(pos || len)) { /* Exit on ^D at empty prompt */
len = 0;
goto END;
} else
continue;
// fallthrough
case 127: // fallthrough
case '\b': /* rhel25 sends '\b' for backspace */
if (pos > 0) {


Ładowanie…
Anuluj
Zapisz