From: Arun Prakash Jana Date: Sun, 26 Aug 2018 13:09:05 +0000 (+0530) Subject: Use underline to show cur dir X-Git-Tag: v2.0~31 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=2401d6dc703e27efabe05b6983fdbdf0fb9c8834;p=nnn.git Use underline to show cur dir --- diff --git a/nnn.c b/nnn.c index 75d645ad..f3619d30 100644 --- a/nnn.c +++ b/nnn.c @@ -2318,11 +2318,11 @@ redraw(char *path) if (ncols > PATH_MAX) ncols = PATH_MAX; - attron(A_REVERSE); + attron(A_UNDERLINE); /* No text wrapping in cwd line */ g_buf[ncols - 1] = '\0'; printw("%s\n\n", g_buf); - attroff(A_REVERSE); + attroff(A_UNDERLINE); /* Fallback to light mode if less than 35 columns */ if (ncols < 35 && cfg.showdetail) {