diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-08-18 12:16:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-18 12:16:27 +0200 |
commit | 700a6fb9d4689ebfeea1139370351eafef74f302 (patch) | |
tree | fb156643949be55862218f4b73e96bcb5cbe14a7 /src/nvim/highlight.c | |
parent | 39494be2a4caeb619846766a3701e18814ccf431 (diff) | |
parent | e29156356b1895473d2f55c729d949c73014cd3c (diff) | |
download | rneovim-700a6fb9d4689ebfeea1139370351eafef74f302.tar.gz rneovim-700a6fb9d4689ebfeea1139370351eafef74f302.tar.bz2 rneovim-700a6fb9d4689ebfeea1139370351eafef74f302.zip |
Merge pull request #19822 from bfredl/hldef
fix(api): make nvim_set_hl(ns=0, ...) redraw screen properly
Diffstat (limited to 'src/nvim/highlight.c')
-rw-r--r-- | src/nvim/highlight.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/highlight.c b/src/nvim/highlight.c index daac140da1..994d496556 100644 --- a/src/nvim/highlight.c +++ b/src/nvim/highlight.c @@ -303,8 +303,6 @@ int hl_get_ui_attr(int ns_id, int idx, int final_id, bool optional) if (pum_drawn()) { must_redraw_pum = true; } - } else if (idx == HLF_MSG && ns_id == -1) { - msg_grid.blending = attrs.hl_blend > -1; } if (optional && !available) { |