ソースを参照

Set the corrent keybind for plugin

master
Arun Prakash Jana 5年前
コミット
984cffecc4
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A75979F35C080412
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      src/nnn.c

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

@@ -2328,7 +2328,7 @@ static int nextsel(int presel)
c = getch();
if (c != ERR) {
ungetch(c);
c = CONTROL('S');
c = ';';
} else
c = 27;
settimeout();
@@ -2603,7 +2603,7 @@ static int filterentries(char *path, char *lastname)
case 27: /* Exit filter mode on Escape and Alt+key */
if (handle_alt_key(ch) != ERR) {
unget_wch(*ch);
*ch = CONTROL('S');
*ch = ';';
}
goto end;
}


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