From: Arun Prakash Jana Date: Mon, 25 Apr 2022 22:56:01 +0000 (+0530) Subject: Use bold forward arrowhead for current X-Git-Tag: v4.5~2 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=cc965d1c2deb55ed0954e538406a6b295704042a;p=nnn.git Use bold forward arrowhead for current --- diff --git a/src/nnn.c b/src/nnn.c index 97aae093..508ee915 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -6359,13 +6359,9 @@ static void statusbar(char *path) static inline void markhovered(void) { - if (cfg.showdetail && ndents) { /* Reversed block for hovered entry */ + if (cfg.showdetail && ndents) { /* Bold forward arrowhead */ tocursor(); -#ifdef ICONS_ENABLED - addstr(MD_ARROW_FORWARD); -#else - addch(' ' | A_REVERSE); -#endif + addch('>' | A_BOLD); } }