diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-02-18 18:11:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-18 18:11:20 +0800 |
commit | 796df966f3cb83698035b85522504d40e7b5ab0b (patch) | |
tree | b59060675bc0996858591abcfe4b468127aa47ee /src/nvim/options.lua | |
parent | eb8a3e0575d36ebfee1e401db0a064763cf684cd (diff) | |
download | rneovim-796df966f3cb83698035b85522504d40e7b5ab0b.tar.gz rneovim-796df966f3cb83698035b85522504d40e7b5ab0b.tar.bz2 rneovim-796df966f3cb83698035b85522504d40e7b5ab0b.zip |
fix(options): don't update curswant for 'winhl' or 'winbl' (#27515)
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 296b78bd15..6e2b015228 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -9785,7 +9785,7 @@ return { UI-dependent. Works best with RGB colors. 'termguicolors' ]=], full_name = 'winblend', - redraw = { 'current_window' }, + redraw = { 'current_window', 'highlight_only' }, scope = { 'window' }, short_desc = N_('Controls transparency level for floating windows'), type = 'number', @@ -9900,7 +9900,7 @@ return { expand_cb = 'expand_set_winhighlight', full_name = 'winhighlight', list = 'onecommacolon', - redraw = { 'current_window' }, + redraw = { 'current_window', 'highlight_only' }, scope = { 'window' }, short_desc = N_('Setup window-local highlights'), type = 'string', |