ソースを参照

Dim file details in detail mode

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

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

@@ -3254,7 +3254,7 @@ static void printent_long(const struct entry *ent, uint namecols, bool sel)
{
bool ln = FALSE;
char ind1 = '\0', ind2 = '\0';
int attrs = sel ? A_REVERSE : 0;
int attrs = sel ? A_REVERSE | A_DIM : A_DIM;
uint len;
char *size;

@@ -3322,9 +3322,9 @@ static void printent_long(const struct entry *ent, uint namecols, bool sel)
}

addstr(" ");
if (ln) {
attron(A_DIM);
attrs |= A_DIM;
if (!ln) {
attroff(A_DIM);
attrs ^= A_DIM;
}
addwstr(unescape(ent->name, namecols));
if (attrs)


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