mirror of
https://github.com/neovim/neovim.git
synced 2026-07-23 09:23:09 +00:00
Problem: Every LSP capability that sends a request on a document change to update its state was using its own buffer-local autocmd to do so. That means there is a separate autocmd per buffer per active capability/feature, and the actual code inside the autocmd callback was virtually identical. The same problem occurred for capabilities that had components to draw on the screen that had their own decoration providers. Solution: Introduce a central `LspNotify` autocmd and decoration provider in the capability module itself. New base class methods `on_close` and `on_change` that take a client_id have been provided, for `didClose` and `didOpen`/`didChange` notifications respectively. New base class method `on_win` that takes topline and botline has been provided to add extmarks or perform other work when lines of a buffer are being drawn. The autocmd callback loops through each active capability instance for the buffer and calls a corresponding method with the triggering client_id if it is currently attached to the buffer that triggered the autocmd. The decoration provider just calls on_win for all active capabilities on the buffer. This slightly tweaks folding range to make use of these new client-id specific callbacks.
430 lines
12 KiB
Lua
430 lines
12 KiB
Lua
local util = require('vim.lsp.util')
|
|
local log = require('vim.lsp.log')
|
|
local tableclear = require('vim._core.table').clear
|
|
local nvim_on = require('vim._core.util').nvim_on
|
|
local api = vim.api
|
|
|
|
---@type table<lsp.FoldingRangeKind, true>
|
|
local supported_fold_kinds = {
|
|
['comment'] = true,
|
|
['imports'] = true,
|
|
['region'] = true,
|
|
}
|
|
|
|
local M = {}
|
|
|
|
local Capability = require('vim.lsp._capability')
|
|
|
|
---@class (private) vim.lsp.folding_range.State : vim.lsp.Capability
|
|
---
|
|
---@field active table<integer, vim.lsp.folding_range.State?>
|
|
---
|
|
--- `TextDocument` version this `state` corresponds to.
|
|
---@field version? integer
|
|
---
|
|
--- treesitter language of the buffer, used for foldtext highlights.
|
|
---@field lang? string
|
|
---
|
|
--- Never use this directly, `evaluate()` the cached foldinfo
|
|
--- then use on demand via `row_*` fields.
|
|
---
|
|
--- Index In the form of client_id -> ranges
|
|
---@field client_state table<integer, lsp.FoldingRange[]?>
|
|
---
|
|
--- Index in the form of row -> [foldlevel, mark]
|
|
---@field row_level table<integer, [integer, ">" | "<"?]?>
|
|
---
|
|
--- Index in the form of start_row -> kinds
|
|
---@field row_kinds table<integer, table<lsp.FoldingRangeKind, true?>?>>
|
|
---
|
|
--- Index in the form of start_row -> collapsed_text
|
|
---@field row_text table<integer, string?>
|
|
---
|
|
--- Index in the form of start_row -> [text, highlight[]?][]
|
|
---@field row_virt_text table<integer, [string, string[]?][]>
|
|
local State = {
|
|
name = 'folding_range',
|
|
method = 'textDocument/foldingRange',
|
|
active = {},
|
|
}
|
|
State.__index = State
|
|
setmetatable(State, Capability)
|
|
Capability.all[State.name] = State
|
|
|
|
--- Re-evaluate the cached foldinfo in the buffer.
|
|
function State:evaluate()
|
|
local row_level, row_kinds, row_text, row_virt_text =
|
|
self.row_level, self.row_kinds, self.row_text, self.row_virt_text
|
|
|
|
tableclear(row_level)
|
|
tableclear(row_kinds)
|
|
tableclear(row_text)
|
|
tableclear(row_virt_text)
|
|
|
|
for client_id, ranges in pairs(self.client_state) do
|
|
for _, range in ipairs(ranges) do
|
|
local start_row = range.startLine
|
|
local end_row = range.endLine
|
|
-- Ignore zero-length or invalid folds
|
|
if start_row < end_row then
|
|
row_text[start_row] = range.collapsedText
|
|
|
|
local kind = range.kind
|
|
if kind then
|
|
-- Ignore unsupported fold kinds.
|
|
if supported_fold_kinds[kind] then
|
|
local kinds = row_kinds[start_row] or {}
|
|
kinds[kind] = true
|
|
row_kinds[start_row] = kinds
|
|
else
|
|
log.info(('Unknown fold kind "%s" from client %d'):format(kind, client_id))
|
|
end
|
|
end
|
|
|
|
for row = start_row, end_row do
|
|
local level = row_level[row] or { 0 }
|
|
level[1] = level[1] + 1
|
|
row_level[row] = level
|
|
end
|
|
row_level[start_row][2] = '>'
|
|
row_level[end_row][2] = '<'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
--- Force `foldexpr()` to be re-evaluated, without opening folds.
|
|
---@param bufnr integer
|
|
local function foldupdate(bufnr)
|
|
for _, winid in ipairs(vim.fn.win_findbuf(bufnr)) do
|
|
local wininfo = vim.fn.getwininfo(winid)[1]
|
|
if wininfo and wininfo.tabnr == vim.fn.tabpagenr() then
|
|
if vim.wo[winid].foldmethod == 'expr' then
|
|
vim._foldupdate(winid, 0, api.nvim_buf_line_count(bufnr))
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
--- Whether `foldupdate()` is scheduled for the buffer with `bufnr`.
|
|
---
|
|
--- Index in the form of bufnr -> true?
|
|
---@type table<integer, true?>
|
|
local scheduled_foldupdate = {}
|
|
|
|
--- Schedule `foldupdate()` after leaving insert mode.
|
|
---@param bufnr integer
|
|
local function schedule_foldupdate(bufnr)
|
|
if not scheduled_foldupdate[bufnr] then
|
|
scheduled_foldupdate[bufnr] = true
|
|
nvim_on('InsertLeave', nil, { buf = bufnr, once = true }, function()
|
|
foldupdate(bufnr)
|
|
scheduled_foldupdate[bufnr] = nil
|
|
end)
|
|
end
|
|
end
|
|
|
|
---@param results table<integer,{err: lsp.ResponseError?, result: lsp.FoldingRange[]?}>
|
|
---@param ctx lsp.HandlerContext
|
|
function State:multi_handler(results, ctx)
|
|
-- Handling responses from outdated buffer only causes performance overhead.
|
|
if util.buf_versions[self.bufnr] ~= ctx.version then
|
|
return
|
|
end
|
|
|
|
for client_id, result in pairs(results) do
|
|
if result.err then
|
|
log.error('folding_range', result.err)
|
|
else
|
|
self.client_state[client_id] = result.result
|
|
end
|
|
end
|
|
self.version = ctx.version
|
|
|
|
self:evaluate()
|
|
if api.nvim_get_mode().mode:match('^i') then
|
|
-- `foldUpdate()` is guarded in insert mode.
|
|
schedule_foldupdate(self.bufnr)
|
|
else
|
|
foldupdate(self.bufnr)
|
|
end
|
|
end
|
|
|
|
---@param err lsp.ResponseError?
|
|
---@param result lsp.FoldingRange[]?
|
|
---@param ctx lsp.HandlerContext, config?: table
|
|
function State:handler(err, result, ctx)
|
|
self:multi_handler({ [ctx.client_id] = { err = err, result = result } }, ctx)
|
|
end
|
|
|
|
--- Request `textDocument/foldingRange` from the server.
|
|
--- `foldupdate()` is scheduled once after the request is completed.
|
|
---@param client_id integer
|
|
function State:refresh(client_id)
|
|
local client = vim.lsp.get_client_by_id(client_id)
|
|
if client then
|
|
---@type lsp.FoldingRangeParams
|
|
local params = { textDocument = util.make_text_document_params(self.bufnr) }
|
|
|
|
client:request('textDocument/foldingRange', params, function(...)
|
|
self:handler(...)
|
|
end, self.bufnr)
|
|
return
|
|
end
|
|
end
|
|
|
|
function State:reset()
|
|
self.lang = vim.treesitter.language.get_lang(vim.bo[self.bufnr].filetype)
|
|
tableclear(self.row_level)
|
|
tableclear(self.row_kinds)
|
|
tableclear(self.row_text)
|
|
tableclear(self.row_virt_text)
|
|
end
|
|
|
|
--- Initialize `state` and event hooks, then request folding ranges.
|
|
---@param bufnr integer
|
|
---@return vim.lsp.folding_range.State
|
|
function State:new(bufnr)
|
|
self = Capability.new(self, bufnr)
|
|
self.lang = vim.treesitter.language.get_lang(vim.bo[self.bufnr].filetype)
|
|
self.row_level = {}
|
|
self.row_kinds = {}
|
|
self.row_text = {}
|
|
self.row_virt_text = {}
|
|
|
|
api.nvim_buf_attach(bufnr, false, {
|
|
--- Sync changed rows with their previous foldlevels before applying new ones.
|
|
on_bytes = function(_, _, _, start_row, _, _, old_row, _, _, new_row, _, _)
|
|
local state = State.active[bufnr]
|
|
if state == nil then
|
|
return true
|
|
end
|
|
local row_level = state.row_level
|
|
if next(row_level) == nil then
|
|
return
|
|
end
|
|
local row = new_row - old_row
|
|
if row > 0 then
|
|
vim._list_insert(row_level, start_row, start_row + math.abs(row) - 1, { -1 })
|
|
-- If the previous row ends a fold,
|
|
-- Nvim treats the first row after consecutive `-1`s as a new fold start,
|
|
-- which is not the desired behavior.
|
|
local prev_level = row_level[start_row - 1]
|
|
if prev_level and prev_level[2] == '<' then
|
|
row_level[start_row] = { prev_level[1] - 1 }
|
|
end
|
|
elseif row < 0 then
|
|
vim._list_remove(row_level, start_row, start_row + math.abs(row) - 1)
|
|
end
|
|
end,
|
|
})
|
|
nvim_on('OptionSet', self.augroup, { pattern = 'foldexpr' }, function()
|
|
if vim.v.option_type == 'global' or api.nvim_get_current_buf() == bufnr then
|
|
vim.lsp._capability.enable('folding_range', false, { bufnr = bufnr })
|
|
end
|
|
end)
|
|
nvim_on('FileType', self.augroup, { buf = bufnr }, function()
|
|
self:reset()
|
|
end)
|
|
|
|
return self
|
|
end
|
|
|
|
---@param client_id integer
|
|
function State:on_attach(client_id)
|
|
self.client_state[client_id] = {}
|
|
self:refresh(client_id)
|
|
end
|
|
|
|
---@params client_id integer
|
|
function State:on_detach(client_id)
|
|
self.client_state[client_id] = nil
|
|
self:evaluate()
|
|
foldupdate(self.bufnr)
|
|
end
|
|
|
|
---@private
|
|
function State:on_close(client_id)
|
|
self.client_state[client_id] = {}
|
|
self:evaluate()
|
|
foldupdate(self.bufnr)
|
|
end
|
|
|
|
---@private
|
|
function State:on_change(client_id)
|
|
self:refresh(client_id)
|
|
end
|
|
|
|
---@param kind lsp.FoldingRangeKind
|
|
---@param winid integer
|
|
function State:foldclose(kind, winid)
|
|
vim._with({ win = winid }, function()
|
|
local bufnr = api.nvim_win_get_buf(winid)
|
|
local row_kinds = State.active[bufnr].row_kinds
|
|
-- Reverse traverse to ensure that the smallest ranges are closed first.
|
|
for row = api.nvim_buf_line_count(bufnr) - 1, 0, -1 do
|
|
local kinds = row_kinds[row]
|
|
if kinds and kinds[kind] then
|
|
vim.cmd(row + 1 .. 'foldclose')
|
|
end
|
|
end
|
|
end)
|
|
end
|
|
|
|
---@param kind lsp.FoldingRangeKind
|
|
---@param winid? integer
|
|
function M.foldclose(kind, winid)
|
|
vim.validate('kind', kind, 'string')
|
|
vim.validate('winid', winid, 'number', true)
|
|
|
|
winid = winid or api.nvim_get_current_win()
|
|
local bufnr = api.nvim_win_get_buf(winid)
|
|
local provider = State.active[bufnr]
|
|
if not provider then
|
|
return
|
|
end
|
|
|
|
-- Schedule `foldclose()` if the buffer is not up-to-date.
|
|
if provider.version == util.buf_versions[bufnr] then
|
|
provider:foldclose(kind, winid)
|
|
return
|
|
end
|
|
|
|
if not next(vim.lsp.get_clients({ bufnr = bufnr, method = 'textDocument/foldingRange' })) then
|
|
return
|
|
end
|
|
---@type lsp.FoldingRangeParams
|
|
local params = { textDocument = util.make_text_document_params(bufnr) }
|
|
vim.lsp.buf_request_all(bufnr, 'textDocument/foldingRange', params, function(...)
|
|
provider:multi_handler(...)
|
|
-- Ensure this window is still valid and buffer stays as the current buffer
|
|
-- after the async request.
|
|
if api.nvim_win_is_valid(winid) and api.nvim_win_get_buf(winid) == bufnr then
|
|
provider:foldclose(kind, winid)
|
|
end
|
|
end)
|
|
end
|
|
|
|
--- Split `line` into highlighted virt_text chunks from `spans`.
|
|
---
|
|
---@param line string
|
|
---@param spans [integer, integer, string][] [start_col, end_col, highlight]
|
|
---@return [string, string[]?][] [text, highlight[]?][]
|
|
local function spans_to_virt_text(line, spans)
|
|
local boundaries = { 0, #line }
|
|
for _, span in ipairs(spans) do
|
|
boundaries[#boundaries + 1] = span[1]
|
|
boundaries[#boundaries + 1] = span[2]
|
|
end
|
|
table.sort(boundaries)
|
|
|
|
local virt_text = {} ---@type [string, string[]][]
|
|
local last_b = -1
|
|
for _, b in ipairs(boundaries) do
|
|
if b > last_b then
|
|
if last_b >= 0 then
|
|
local start_col = last_b
|
|
local end_col = b
|
|
local text = line:sub(start_col + 1, end_col)
|
|
local highlight = {} ---@type string[]
|
|
for _, span in ipairs(spans) do
|
|
if span[1] <= start_col and end_col <= span[2] then
|
|
if highlight[#highlight] ~= span[3] then
|
|
highlight[#highlight + 1] = span[3]
|
|
end
|
|
end
|
|
end
|
|
if #highlight == 0 then
|
|
virt_text[#virt_text + 1] = { text }
|
|
else
|
|
virt_text[#virt_text + 1] = { text, highlight }
|
|
end
|
|
end
|
|
last_b = b
|
|
end
|
|
end
|
|
|
|
return virt_text
|
|
end
|
|
|
|
--- Return foldtext highlighted via treesitter, if available.
|
|
---
|
|
---@return string|[string, string[]?][]
|
|
---@param lnum? integer
|
|
function M.foldtext(lnum)
|
|
lnum = lnum or vim.v.foldstart
|
|
local bufnr = api.nvim_get_current_buf()
|
|
local row = lnum - 1
|
|
local state = State.active[bufnr]
|
|
local lang = state and state.lang
|
|
local line = vim.fn.getline(lnum)
|
|
if not lang then
|
|
return line
|
|
end ---@cast state -nil
|
|
|
|
local virt_text = state.row_virt_text[row]
|
|
if virt_text then
|
|
return virt_text
|
|
end
|
|
|
|
line = state.row_text[row] or line
|
|
local ok, parser = pcall(function()
|
|
local parser = vim.treesitter.get_string_parser(line, lang)
|
|
parser:parse(true)
|
|
return parser
|
|
end)
|
|
if not ok then
|
|
return line
|
|
end
|
|
|
|
--- Collect treesitter highlight spans for the foldtext.
|
|
--- [start_col, end_col, highlight]
|
|
---@type [integer, integer, string][]
|
|
local spans = {}
|
|
parser:for_each_tree(function(tstree, tree)
|
|
local query = vim.treesitter.query.get(tree:lang(), 'highlights')
|
|
if query then
|
|
for capture, node in query:iter_captures(tstree:root(), line) do
|
|
local name = query.captures[capture]
|
|
local _, start_col, _, end_col = node:range()
|
|
if name:match('^[^_]') then
|
|
spans[#spans + 1] = {
|
|
start_col,
|
|
end_col,
|
|
('@%s.%s'):format(name, tree:lang()),
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end)
|
|
|
|
virt_text = spans_to_virt_text(line, spans)
|
|
state.row_virt_text[row] = virt_text
|
|
|
|
return virt_text
|
|
end
|
|
|
|
---@param lnum? integer
|
|
---@return string level
|
|
function M.foldexpr(lnum)
|
|
local bufnr = api.nvim_get_current_buf()
|
|
if not vim.lsp._capability.is_enabled('folding_range', { bufnr = bufnr }) then
|
|
-- `foldexpr` lead to a textlock, so any further operations need to be scheduled.
|
|
vim.schedule(function()
|
|
if api.nvim_buf_is_valid(bufnr) then
|
|
vim.lsp._capability.enable('folding_range', true, { bufnr = bufnr })
|
|
end
|
|
end)
|
|
end
|
|
|
|
local state = State.active[bufnr]
|
|
if not state then
|
|
return '0'
|
|
end
|
|
local row = (lnum or vim.v.lnum) - 1
|
|
local level = state.row_level[row]
|
|
return level and (level[2] or '') .. (level[1] or '0') or '0'
|
|
end
|
|
|
|
return M
|