vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 3875f5818d7f10dfaf98a70163c3cab5ab1f5198 parent db0b2f3ddda48f1dca785890d81ecd36c44c81d5 Author: Randy Palamar <palamar@ualberta.ca> Date: Tue, 17 Oct 2023 05:48:18 -0600 apply configured foreground to selections fixes #1151: Set foreground color for visual selection Diffstat:
| M | vis.c | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git 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++; }