From: Bram Moolenaar Date: Mon, 23 Mar 2020 20:45:29 +0000 (+0100) Subject: patch 8.2.0434: MS-Windows with VTP: Normal color not working X-Git-Tag: v8.2.0434 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8bd3496380ceb32e544dfe39cb4d52e4943068c;p=vim patch 8.2.0434: MS-Windows with VTP: Normal color not working Problem: MS-Windows with VTP: Normal color not working. Solution: After changing the Normal color update the VTP console color. (Nobuhiro Takasaki, closes #5836) --- diff --git a/src/highlight.c b/src/highlight.c index 44888e97e..5d90e696a 100644 --- a/src/highlight.c +++ b/src/highlight.c @@ -1484,6 +1484,9 @@ do_highlight( did_highlight_changed = TRUE; redraw_all_later(NOT_VALID); } +#endif +#ifdef FEAT_VTP + control_console_color_rgb(); #endif } #ifdef FEAT_TERMINAL diff --git a/src/version.c b/src/version.c index b8552ed92..6df87b45d 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 434, /**/ 433, /**/