ソースを参照

Print prompt even on no matches

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

+ 3
- 3
nnn.c ファイルの表示

@@ -1077,9 +1077,9 @@ filterentries(char *path)

wcstombs(ln, wln, REGEX_MAX);
ndents = total;
if (matches(pln) == -1)
continue;
redraw(path);
if (matches(pln) != -1)
redraw(path);
printprompt(ln);
continue;
}


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