소스 검색

Fix build break; rl_menu_complete missing on macOS

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

+ 4
- 0
src/nnn.c 파일 보기

@@ -4031,7 +4031,11 @@ int main(int argc, char *argv[])

/* Bind TAB to cycling */
rl_variable_bind("completion-ignore-case", "on");
#ifdef __linux__
rl_bind_key('\t', rl_menu_complete);
#else
rl_bind_key('\t', rl_complete);
#endif
read_history(NULL);

#ifdef DEBUGMODE


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