mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
feat(api): add nvim__redraw for more granular redrawing
Experimental and subject to future changes. Add a way to redraw certain elements that are not redrawn while Nvim is waiting for input, or currently have no API to do so. This API covers all that can be done with the :redraw* commands, in addition to the following new features: - Immediately move the cursor to a (non-current) window. - Target a specific window or buffer to mark for redraw. - Mark a buffer range for redraw (replaces nvim__buf_redraw_range()). - Redraw the 'statuscolumn'.
This commit is contained in:
@@ -215,7 +215,7 @@ end
|
||||
---@param start_row integer
|
||||
---@param new_end integer
|
||||
function TSHighlighter:on_bytes(_, _, start_row, _, _, _, _, _, new_end)
|
||||
api.nvim__buf_redraw_range(self.bufnr, start_row, start_row + new_end + 1)
|
||||
api.nvim__redraw({ buf = self.bufnr, range = { start_row, start_row + new_end + 1 } })
|
||||
end
|
||||
|
||||
---@package
|
||||
@@ -227,7 +227,7 @@ end
|
||||
---@param changes Range6[]
|
||||
function TSHighlighter:on_changedtree(changes)
|
||||
for _, ch in ipairs(changes) do
|
||||
api.nvim__buf_redraw_range(self.bufnr, ch[1], ch[4] + 1)
|
||||
api.nvim__redraw({ buf = self.bufnr, range = { ch[1], ch[4] + 1 } })
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user