diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-09-01 20:25:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-01 20:25:36 +0200 |
commit | 9df3a676e7f2302929061a6c0edf42e5fb3f3873 (patch) | |
tree | 75b58a88ca69022a6e893e337c39e283d5577452 /src/nvim/syntax.c | |
parent | 2f37c243482eec20fe52f298368c02eca21c758f (diff) | |
parent | 14615f7f67664cd63410999c2cd13ee50ed14571 (diff) | |
download | rneovim-9df3a676e7f2302929061a6c0edf42e5fb3f3873.tar.gz rneovim-9df3a676e7f2302929061a6c0edf42e5fb3f3873.tar.bz2 rneovim-9df3a676e7f2302929061a6c0edf42e5fb3f3873.zip |
Merge pull request #10400 from bfredl/msg_grid
Dedicated message grid.
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r-- | src/nvim/syntax.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 02b72be0ae..4b9e84745a 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -7533,6 +7533,9 @@ void highlight_changed(void) hlf == (int)HLF_INACTIVE); if (highlight_attr[hlf] != highlight_attr_last[hlf]) { + if (hlf == HLF_MSG) { + clear_cmdline = true; + } ui_call_hl_group_set(cstr_as_string((char *)hlf_names[hlf]), highlight_attr[hlf]); highlight_attr_last[hlf] = highlight_attr[hlf]; |