From 7acc9196d5d7ce98446d23531ccf2a171ded7187 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 8 May 2021 08:48:47 +0530 Subject: [PATCH] Reverse selection mark for visibility --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 28909a7a..94b97d3f 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) ? '+' | A_BOLD : ' '); + addch((ent->flags & FILE_SELECTED) ? '+' | A_REVERSE : ' '); /* Directories are always shown on top */ resetdircolor(ent->flags); -- 2.48.1