From 045ef7a102e86f85ea71864c6a12ecb90250f935 Mon Sep 17 00:00:00 2001 From: Randy Palamar Date: Tue, 17 Oct 2023 09:16:43 -0600 Subject: [PATCH] apply configured foreground to matching pair fixes #1151 (part 2): Set foreground color for matching pair --- vis.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vis.c b/vis.c index 5f9d62cdd..a26bccb2a 100644 --- a/vis.c +++ b/vis.c @@ -409,6 +409,7 @@ static void window_draw_cursor_matching(Win *win, Selection *cur, CellStyle *sty line_match->cells[col_match].style.bg = old.fg; } else { line_match->cells[col_match].style.bg = style->bg; + line_match->cells[col_match].style.fg = style->fg; } }