From cc965d1c2deb55ed0954e538406a6b295704042a Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Tue, 26 Apr 2022 04:26:01 +0530 Subject: [PATCH] Use bold forward arrowhead for current --- src/nnn.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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); } } -- 2.48.1