aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-02-26 23:24:26 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-02-26 23:49:20 +0530
commitf12bf0a2eeb348513c38f598c103f5b4d5fcef75 (patch)
tree77e22ef66c95e75f491dfc4be51abc682ba19659 /src
parent987cc9b4b3f3a00d68aac5a0634f0de1971813ce (diff)
downloadnnn-f12bf0a2eeb348513c38f598c103f5b4d5fcef75.tar.gz
Dim links
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c53
1 files changed, 26 insertions, 27 deletions
diff --git a/src/nnn.c b/src/nnn.c
index c728793..ea37f2b 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -3142,13 +3142,11 @@ static char *get_lsperms(mode_t mode)
static void printent(const struct entry *ent, uint namecols, bool sel)
{
- char hln = '\0';
char ind = get_ind(ent->mode, FALSE);
+ int attrs = sel ? A_REVERSE : 0;
- if (S_ISREG(ent->mode) && (ent->flags & HARD_LINK)) {
- hln = '>';
- --namecols;
- }
+ if ((S_ISREG(ent->mode) && (ent->flags & HARD_LINK)) || ind == '@')
+ attrs |= A_DIM;
if (!ind)
++namecols;
@@ -3158,21 +3156,22 @@ static void printent(const struct entry *ent, uint namecols, bool sel)
addch((ent->flags & FILE_SELECTED) ? '+' : ' ');
- if (sel)
- attron(A_REVERSE);
+ if (attrs)
+ attron(attrs);
addwstr(unescape(ent->name, namecols));
- if (sel)
- attroff(A_REVERSE);
+ if (attrs)
+ attroff(attrs);
+
if (ind)
addch(ind);
- if (hln)
- addch(hln);
addch('\n');
}
static void printent_long(const struct entry *ent, uint namecols, bool sel)
{
- char timebuf[18], permbuf[8], ind1 = '\0', ind2 = '\0', special = '\0';
+ bool ln = FALSE;
+ char timebuf[18], permbuf[8], ind1 = '\0', ind2 = '\0';
+ int attrs = sel ? A_REVERSE : 0;
size_t len;
char *size;
@@ -3192,25 +3191,23 @@ static void printent_long(const struct entry *ent, uint namecols, bool sel)
addch((ent->flags & FILE_SELECTED) ? '+' : ' ');
- if (sel)
- attron(A_REVERSE);
+ if (attrs)
+ attron(attrs);
addstr(timebuf);
addstr(permbuf);
switch (ent->mode & S_IFMT) {
case S_IFREG:
- ind1 = (ent->flags & HARD_LINK) ? '>' : ' ';
+ if (ent->flags & HARD_LINK)
+ ln = TRUE;
+
if (ent->mode & 0100)
ind2 = '*';
- else /* Add a column if no indicator is needed */
- ++namecols;
// fallthrough
case S_IFDIR:
- if (!ind1) {
- ind1 = ' ';
+ if (!ind2) /* Add a column if end indicator is not needed */
++namecols;
- }
size = coolsize(cfg.blkorder ? ent->blocks << blk_shift : ent->size);
len = 9 - strlen(size);
@@ -3219,6 +3216,7 @@ static void printent_long(const struct entry *ent, uint namecols, bool sel)
addstr(size);
break;
case S_IFLNK:
+ ln = TRUE;
ind1 = ind2 = '@'; // fallthrough
case S_IFSOCK:
if (!ind1)
@@ -3236,17 +3234,18 @@ static void printent_long(const struct entry *ent, uint namecols, bool sel)
if (!ind1)
ind1 = ind2 = '?';
addstr(" ");
- special = ' ';
+ addch(ind1);
break;
}
- addch(ind1);
- addch(' ');
- if (special)
- addch(special);
+ addstr(" ");
+ if (ln) {
+ attron(A_DIM);
+ attrs |= A_DIM;
+ }
addwstr(unescape(ent->name, namecols));
- if (sel)
- attroff(A_REVERSE);
+ if (attrs)
+ attroff(attrs);
if (ind2)
addch(ind2);
addch('\n');