ソースを参照

Fix build break; rl_menu_complete missing on macOS

master
Arun Prakash Jana 5年前
コミット
e039b0ee35
この署名に対応する既知のキーがデータベースに存在しません 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


読み込み中…
キャンセル
保存