diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-11-22 06:52:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-22 06:52:32 +0800 |
commit | ff75f345ab5fa57c6560db021e8eb099aff90472 (patch) | |
tree | 231593b41f0e203427f6f76f1776e399719b90cc /src/nvim/buffer_defs.h | |
parent | 92a83f671b227ace7ded5006619bb943c2d9ecc0 (diff) | |
download | rneovim-ff75f345ab5fa57c6560db021e8eb099aff90472.tar.gz rneovim-ff75f345ab5fa57c6560db021e8eb099aff90472.tar.bz2 rneovim-ff75f345ab5fa57c6560db021e8eb099aff90472.zip |
fix(highlight): 'winhl' shouldn't take priority over API (#31288)
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index d33734ccfe..a8f3fc45b9 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1035,7 +1035,7 @@ struct window_S { synblock_T *w_s; ///< for :ownsyntax int w_ns_hl; - int w_ns_hl_winhl; + int w_ns_hl_winhl; ///< when set to -1, 'winhighlight' shouldn't be used int w_ns_hl_active; int *w_ns_hl_attr; |