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:
Tristan Knight 2024-12-06 18:09:07 +00:00 committed by GitHub
parent 2550b5e9bd
commit fac96b72a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -271,7 +271,9 @@ local function setup(bufnr)
buffer = bufnr,
callback = function(args)
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,
})
api.nvim_create_autocmd('LspNotify', {