ソースを参照

Merge pull request #309 from 0xACE/readline-resize

stop readline from overwriting LINES
master
Mischievous Meerkat GitHub 6年前
コミット
e3c99de23a
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更4行の追加0行の削除
  1. +4
    -0
      src/nnn.c

+ 4
- 0
src/nnn.c ファイルの表示

@@ -4783,6 +4783,10 @@ int main(int argc, char *argv[])
setlocale(LC_ALL, "");

#ifndef NORL
#if RL_READLINE_VERSION >= 0x0603
/* readline would overwrite the WINCH signal hook */
rl_change_environment = 0;
#endif
/* Bind TAB to cycling */
rl_variable_bind("completion-ignore-case", "on");
#ifdef __linux__


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