From 4727b3baa8acb99f0a59ee8f834ea68270aeb199 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Fri, 7 May 2021 23:19:37 +0530 Subject: [PATCH] Bold selection marker for better visibility --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 524db966..28909a7a 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -3723,7 +3723,7 @@ static void printent(const struct entry *ent, uint_t namecols, bool sel) int attrs = 0; uchar_t color_pair = get_color_pair_name_ind(ent, &ind, &attrs); - addch((ent->flags & FILE_SELECTED) ? '+' : ' '); + addch((ent->flags & FILE_SELECTED) ? '+' | A_BOLD : ' '); /* Directories are always shown on top */ resetdircolor(ent->flags);