]> Sergey Matveev's repositories - nnn.git/commitdiff
Use bold forward arrowhead for current
authorArun Prakash Jana <engineerarun@gmail.com>
Mon, 25 Apr 2022 22:56:01 +0000 (04:26 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Mon, 25 Apr 2022 22:56:01 +0000 (04:26 +0530)
src/nnn.c

index 97aae093d89c2b026aec1aa2aa62a33d18866304..508ee915fbfe39127f65499c4f58b32fbf334295 100644 (file)
--- 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);
        }
 }