mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
fix(lsp): add foldingrange method support check #31463
Problem: The folding_range request method assumes that the client supports the method Solution: Add a capability guard to the call
This commit is contained in:
parent
2550b5e9bd
commit
fac96b72a5
@ -271,7 +271,9 @@ local function setup(bufnr)
|
|||||||
buffer = bufnr,
|
buffer = bufnr,
|
||||||
callback = function(args)
|
callback = function(args)
|
||||||
local client = assert(vim.lsp.get_client_by_id(args.data.client_id))
|
local client = assert(vim.lsp.get_client_by_id(args.data.client_id))
|
||||||
request(bufnr, client)
|
if client:supports_method(vim.lsp.protocol.Methods.textDocument_foldingRange, bufnr) then
|
||||||
|
request(bufnr, client)
|
||||||
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
api.nvim_create_autocmd('LspNotify', {
|
api.nvim_create_autocmd('LspNotify', {
|
||||||
|
Loading…
Reference in New Issue
Block a user