# HG changeset patch # User Bram Moolenaar # Date 1611828904 -3600 # Node ID c425989fe7ac340fb4241469327be8fd672197b1 # Parent b7ab2ae790cc67cd35fe6cc368243f877b658d43 patch 8.2.2418: color not changed if ModeMsg highlight is set in InsertEnter Commit: https://github.com/vim/vim/commit/2e6cdb91e8dea08301f31bc83188c06112eb7f57 Author: Bram Moolenaar Date: Thu Jan 28 11:07:44 2021 +0100 patch 8.2.2418: color not changed if ModeMsg highlight is set in InsertEnter Problem: Color not changed if ModeMsg highlight is set in InsertEnter autocmd event. (Paul Swanson) Solution: Call highlight_changed() after triggering InsertEnter. (closes #7751) diff --git a/src/edit.c b/src/edit.c --- a/src/edit.c +++ b/src/edit.c @@ -196,6 +196,10 @@ edit( #endif ins_apply_autocmds(EVENT_INSERTENTER); + // Check for changed highlighting, e.g. for ModeMsg. + if (need_highlight_changed) + highlight_changed(); + // Make sure the cursor didn't move. Do call check_cursor_col() in // case the text was modified. Since Insert mode was not started yet // a call to check_cursor_col() may move the cursor, especially with diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2418, +/**/ 2417, /**/ 2416,