소스 검색

Exit prompt on ^D at empty prompt

master
Arun Prakash Jana 5 년 전
부모
커밋
e3d80da2ad
No known key found for this signature in database GPG 키 ID: A75979F35C080412
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. +6
    -2
      src/nnn.c

+ 6
- 2
src/nnn.c 파일 보기

@@ -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) {


불러오는 중...
취소
저장