mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 05:05:00 -07:00
fix(lsp): reapplying already-applied hints #24114
Problem: The decoration provider clears the whole buffer then redraws all the hints every time the window was redrawn. This may lead to an infinite loop. Solution: Store the last applied version for a line and only clear and redraw the line if the buffer version has changed.
This commit is contained in:
parent
3688735c2b
commit
94a904b453
@ -8,6 +8,7 @@ local M = {}
|
|||||||
---@field client_hint table<integer, table<integer, lsp.InlayHint[]>> client_id -> (lnum -> hints)
|
---@field client_hint table<integer, table<integer, lsp.InlayHint[]>> client_id -> (lnum -> hints)
|
||||||
---@field enabled boolean Whether inlay hints are enabled for the buffer
|
---@field enabled boolean Whether inlay hints are enabled for the buffer
|
||||||
---@field timer uv.uv_timer_t? Debounce timer associated with the buffer
|
---@field timer uv.uv_timer_t? Debounce timer associated with the buffer
|
||||||
|
---@field applied table<integer, integer> Last version of hints applied to this line
|
||||||
|
|
||||||
---@type table<integer, lsp._inlay_hint.bufstate>
|
---@type table<integer, lsp._inlay_hint.bufstate>
|
||||||
local bufstates = {}
|
local bufstates = {}
|
||||||
@ -169,7 +170,7 @@ function M.enable(bufnr)
|
|||||||
bufnr = resolve_bufnr(bufnr)
|
bufnr = resolve_bufnr(bufnr)
|
||||||
local bufstate = bufstates[bufnr]
|
local bufstate = bufstates[bufnr]
|
||||||
if not (bufstate and bufstate.enabled) then
|
if not (bufstate and bufstate.enabled) then
|
||||||
bufstates[bufnr] = { enabled = true, timer = nil }
|
bufstates[bufnr] = { enabled = true, timer = nil, applied = {} }
|
||||||
M.refresh({ bufnr = bufnr })
|
M.refresh({ bufnr = bufnr })
|
||||||
api.nvim_buf_attach(bufnr, true, {
|
api.nvim_buf_attach(bufnr, true, {
|
||||||
on_lines = function(_, cb_bufnr)
|
on_lines = function(_, cb_bufnr)
|
||||||
@ -238,35 +239,38 @@ api.nvim_set_decoration_provider(namespace, {
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
local hints_by_client = bufstate.client_hint
|
local hints_by_client = bufstate.client_hint
|
||||||
api.nvim_buf_clear_namespace(bufnr, namespace, 0, -1)
|
|
||||||
|
|
||||||
for lnum = topline, botline do
|
for lnum = topline, botline do
|
||||||
for _, hints_by_lnum in pairs(hints_by_client) do
|
if bufstate.applied[lnum] ~= bufstate.version then
|
||||||
local line_hints = hints_by_lnum[lnum] or {}
|
api.nvim_buf_clear_namespace(bufnr, namespace, lnum, lnum + 1)
|
||||||
for _, hint in pairs(line_hints) do
|
for _, hints_by_lnum in pairs(hints_by_client) do
|
||||||
local text = ''
|
local line_hints = hints_by_lnum[lnum] or {}
|
||||||
if type(hint.label) == 'string' then
|
for _, hint in pairs(line_hints) do
|
||||||
text = hint.label
|
local text = ''
|
||||||
else
|
if type(hint.label) == 'string' then
|
||||||
for _, part in ipairs(hint.label) do
|
text = hint.label
|
||||||
text = text .. part.value
|
else
|
||||||
|
for _, part in ipairs(hint.label) do
|
||||||
|
text = text .. part.value
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
local vt = {}
|
||||||
|
if hint.paddingLeft then
|
||||||
|
vt[#vt + 1] = { ' ' }
|
||||||
|
end
|
||||||
|
vt[#vt + 1] = { text, 'LspInlayHint' }
|
||||||
|
if hint.paddingRight then
|
||||||
|
vt[#vt + 1] = { ' ' }
|
||||||
|
end
|
||||||
|
api.nvim_buf_set_extmark(bufnr, namespace, lnum, hint.position.character, {
|
||||||
|
virt_text_pos = 'inline',
|
||||||
|
ephemeral = false,
|
||||||
|
virt_text = vt,
|
||||||
|
hl_mode = 'combine',
|
||||||
|
})
|
||||||
end
|
end
|
||||||
local vt = {}
|
|
||||||
if hint.paddingLeft then
|
|
||||||
vt[#vt + 1] = { ' ' }
|
|
||||||
end
|
|
||||||
vt[#vt + 1] = { text, 'LspInlayHint' }
|
|
||||||
if hint.paddingRight then
|
|
||||||
vt[#vt + 1] = { ' ' }
|
|
||||||
end
|
|
||||||
api.nvim_buf_set_extmark(bufnr, namespace, lnum, hint.position.character, {
|
|
||||||
virt_text_pos = 'inline',
|
|
||||||
ephemeral = false,
|
|
||||||
virt_text = vt,
|
|
||||||
hl_mode = 'combine',
|
|
||||||
})
|
|
||||||
end
|
end
|
||||||
|
bufstate.applied[lnum] = bufstate.version
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
Loading…
Reference in New Issue
Block a user