diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-07-13 14:05:52 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2019-07-13 14:27:06 +0200 |
commit | cb9e0a051f7ed36d7f03819f9d71b3000164b826 (patch) | |
tree | 0361bbddb986127fc89ad391e89c26b60aa20fc1 /src/nvim/highlight_defs.h | |
parent | 4013f670537246826dae738d5cb86fd075f59f82 (diff) | |
download | rneovim-cb9e0a051f7ed36d7f03819f9d71b3000164b826.tar.gz rneovim-cb9e0a051f7ed36d7f03819f9d71b3000164b826.tar.bz2 rneovim-cb9e0a051f7ed36d7f03819f9d71b3000164b826.zip |
floats: fix 'winblend' on top of doublewidth chars.
The interaction between 'winblend' and doublewidth chars in the background
does not look very good. But check no chars get incorrectly placed
at least.
Also check that hidden EndOfBuffer region (from style="minimal") blends
correctly.
Diffstat (limited to 'src/nvim/highlight_defs.h')
-rw-r--r-- | src/nvim/highlight_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/highlight_defs.h b/src/nvim/highlight_defs.h index 60f571ff0f..25d859c55d 100644 --- a/src/nvim/highlight_defs.h +++ b/src/nvim/highlight_defs.h @@ -36,6 +36,7 @@ typedef struct attr_entry { .rgb_sp_color = -1, \ .cterm_fg_color = 0, \ .cterm_bg_color = 0, \ + .hl_blend = -1, \ } /// Values for index in highlight_attr[]. |