From 947ea1c8431b00cfc9ebbd300744d420b5736915 Mon Sep 17 00:00:00 2001 From: Randy Palamar Date: Tue, 17 Oct 2023 05:48:18 -0600 Subject: [PATCH] apply configured foreground to selections fixes #1151: Set foreground color for visual selection --- vis.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vis.c b/vis.c index 2a4d6ae55..5f9d62cdd 100644 --- a/vis.c +++ b/vis.c @@ -385,6 +385,7 @@ static void window_draw_selection(View *view, Selection *cur, CellStyle *style) } } else { l->cells[col].style.bg = style->bg; + l->cells[col].style.fg = style->fg; } col++; }