mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 11:58:17 +00:00
fix(options): don't update curswant for 'winhl' or 'winbl' (#27515)
This commit is contained in:
@@ -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',
|
||||
|
Reference in New Issue
Block a user