Merge pull request #13649 from mjlbach/move_from_nvim-lspconfig

LSP: Move workspace/configuration from nvim-lspconfig to core
This commit is contained in:
Matthieu Coudron
2021-01-01 23:52:48 +01:00
committed by GitHub
5 changed files with 103 additions and 0 deletions

View File

@@ -148,6 +148,31 @@ M['workspace/applyEdit'] = function(_, _, workspace_edit)
}
end
--@see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#workspace_configuration
M['workspace/configuration'] = function(err, _, params, client_id)
local client = vim.lsp.get_client_by_id(client_id)
if not client then
err_message("LSP[id=", client_id, "] client has shut down after sending the message")
end
if err then error(vim.inspect(err)) end
if not params.items then
return {}
end
local result = {}
for _, item in ipairs(params.items) do
if item.section then
local value = util.lookup_section(client.config.settings, item.section) or vim.NIL
-- For empty sections with no explicit '' key, return settings as is
if value == vim.NIL and item.section == '' then
value = client.config.settings or vim.NIL
end
table.insert(result, value)
end
end
return result
end
M['textDocument/publishDiagnostics'] = function(...)
return require('vim.lsp.diagnostic').on_publish_diagnostics(...)
end

View File

@@ -1422,6 +1422,21 @@ function M.character_offset(buf, row, col)
return str_utfindex(line, col)
end
--- Helper function to return nested values in language server settings
---
--@param settings a table of language server settings
--@param section a string indicating the field of the settings table
--@returns (table or string) The value of settings accessed via section
function M.lookup_section(settings, section)
for part in vim.gsplit(section, '.', true) do
settings = settings[part]
if not settings then
return
end
end
return settings
end
M._get_line_byte_from_position = get_line_byte_from_position
M._warn_once = warn_once