ソースを参照

Skip printing and erasing

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

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

@@ -5111,9 +5111,11 @@ static void redraw(char *path)
addch((i + '1') | (COLOR_PAIR(i + 1) | A_BOLD
/* active: underline, current: reverse */
| ((cfg.curctx != i) ? A_UNDERLINE : A_REVERSE)));
addch(' ');

if (i != CTX_MAX - 1)
addch(' ');
}
addstr("\b] "); /* 10 chars printed for contexts - "[1 2 3 4] " */
addstr("] "); /* 10 chars printed for contexts - "[1 2 3 4] " */

attron(A_UNDERLINE);



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