| local log = require('vim.lsp.log') |
| local protocol = require('vim.lsp.protocol') |
| local ms = protocol.Methods |
| local util = require('vim.lsp.util') |
| local api = vim.api |
| local completion = require('vim.lsp.completion') |
|
|
| |
| local M = {} |
|
|
| |
| |
| |
| local RCS = {} |
|
|
| |
| |
| local RSC = {} |
|
|
| |
| |
| local NSC = {} |
|
|
| |
| |
| local function err_message(...) |
| vim.notify(table.concat(vim.iter({ ... }):flatten():totable()), vim.log.levels.ERROR) |
| api.nvim_command('redraw') |
| end |
|
|
| |
| RCS[ms.workspace_executeCommand] = function(_, _, _) |
| |
| end |
|
|
| |
| |
| |
| |
| RSC[ms.dollar_progress] = function(_, params, ctx) |
| local client = vim.lsp.get_client_by_id(ctx.client_id) |
| if not client then |
| err_message('LSP[id=', tostring(ctx.client_id), '] client has shut down during progress update') |
| return vim.NIL |
| end |
| local kind = nil |
| local value = params.value |
|
|
| if type(value) == 'table' then |
| kind = value.kind |
| |
| |
| |
| if kind == 'begin' then |
| client.progress.pending[params.token] = value.title |
| else |
| value.title = client.progress.pending[params.token] |
| if kind == 'end' then |
| client.progress.pending[params.token] = nil |
| end |
| end |
| end |
|
|
| client.progress:push(params) |
|
|
| api.nvim_exec_autocmds('LspProgress', { |
| pattern = kind, |
| modeline = false, |
| data = { client_id = ctx.client_id, params = params }, |
| }) |
| end |
|
|
| |
| |
| |
| RSC[ms.window_workDoneProgress_create] = function(_, params, ctx) |
| local client = vim.lsp.get_client_by_id(ctx.client_id) |
| if not client then |
| err_message('LSP[id=', tostring(ctx.client_id), '] client has shut down during progress update') |
| return vim.NIL |
| end |
| client.progress:push(params) |
| return vim.NIL |
| end |
|
|
| |
| |
| RSC[ms.window_showMessageRequest] = function(_, params) |
| local actions = params.actions or {} |
| local co, is_main = coroutine.running() |
| if co and not is_main then |
| local opts = { |
| kind = 'lsp_message', |
| prompt = params.message .. ': ', |
| format_item = function(action) |
| return (action.title:gsub('\r\n', '\\r\\n')):gsub('\n', '\\n') |
| end, |
| } |
| vim.ui.select(actions, opts, function(choice) |
| |
| |
| vim.schedule(function() |
| coroutine.resume(co, choice or vim.NIL) |
| end) |
| end) |
| return coroutine.yield() |
| else |
| local option_strings = { params.message, '\nRequest Actions:' } |
| for i, action in ipairs(actions) do |
| local title = action.title:gsub('\r\n', '\\r\\n') |
| title = title:gsub('\n', '\\n') |
| table.insert(option_strings, string.format('%d. %s', i, title)) |
| end |
| local choice = vim.fn.inputlist(option_strings) |
| if choice < 1 or choice > #actions then |
| return vim.NIL |
| else |
| return actions[choice] |
| end |
| end |
| end |
|
|
| |
| |
| RSC[ms.client_registerCapability] = function(_, params, ctx) |
| local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) |
| client:_register(params.registrations) |
| for bufnr in pairs(client.attached_buffers) do |
| vim.lsp._set_defaults(client, bufnr) |
| end |
| return vim.NIL |
| end |
|
|
| |
| |
| RSC[ms.client_unregisterCapability] = function(_, params, ctx) |
| local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) |
| client:_unregister(params.unregisterations) |
| return vim.NIL |
| end |
|
|
| |
| |
| RSC[ms.workspace_applyEdit] = function(_, params, ctx) |
| assert( |
| params, |
| 'workspace/applyEdit must be called with `ApplyWorkspaceEditParams`. Server is violating the specification' |
| ) |
| |
| local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) |
| if params.label then |
| print('Workspace edit', params.label) |
| end |
| local status, result = pcall(util.apply_workspace_edit, params.edit, client.offset_encoding) |
| return { |
| applied = status, |
| failureReason = result, |
| } |
| end |
|
|
| |
| |
| |
| local function lookup_section(table, section) |
| local keys = vim.split(section, '.', { plain = true }) |
| return vim.tbl_get(table, unpack(keys)) |
| end |
|
|
| |
| |
| RSC[ms.workspace_configuration] = function(_, params, ctx) |
| local client = vim.lsp.get_client_by_id(ctx.client_id) |
| if not client then |
| err_message( |
| 'LSP[', |
| ctx.client_id, |
| '] client has shut down after sending a workspace/configuration request' |
| ) |
| return |
| end |
| if not params.items then |
| return {} |
| end |
|
|
| local response = {} |
| for _, item in ipairs(params.items) do |
| if item.section then |
| local value = lookup_section(client.settings, item.section) |
| |
| if value == nil and item.section == '' then |
| value = client.settings |
| end |
| if value == nil then |
| value = vim.NIL |
| end |
| table.insert(response, value) |
| end |
| end |
| return response |
| end |
|
|
| |
| RSC[ms.workspace_workspaceFolders] = function(_, _, ctx) |
| local client = vim.lsp.get_client_by_id(ctx.client_id) |
| if not client then |
| err_message('LSP[id=', ctx.client_id, '] client has shut down after sending the message') |
| return |
| end |
| return client.workspace_folders or vim.NIL |
| end |
|
|
| NSC[ms.textDocument_publishDiagnostics] = function(...) |
| return vim.lsp.diagnostic.on_publish_diagnostics(...) |
| end |
|
|
| |
| RCS[ms.textDocument_diagnostic] = function(...) |
| return vim.lsp.diagnostic.on_diagnostic(...) |
| end |
|
|
| |
| RCS[ms.textDocument_codeLens] = function(...) |
| return vim.lsp.codelens.on_codelens(...) |
| end |
|
|
| |
| RCS[ms.textDocument_inlayHint] = function(...) |
| return vim.lsp.inlay_hint.on_inlayhint(...) |
| end |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| local function response_to_list(map_result, entity, title_fn) |
| |
| return function(_, result, ctx, config) |
| if not result or vim.tbl_isempty(result) then |
| vim.notify('No ' .. entity .. ' found') |
| return |
| end |
| config = config or {} |
| local title = title_fn(ctx) |
| local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) |
| local items = map_result(result, ctx.bufnr, client.offset_encoding) |
|
|
| local list = { title = title, items = items, context = ctx } |
| if config.on_list then |
| assert(vim.is_callable(config.on_list), 'on_list is not a function') |
| config.on_list(list) |
| elseif config.loclist then |
| vim.fn.setloclist(0, {}, ' ', list) |
| vim.cmd.lopen() |
| else |
| vim.fn.setqflist({}, ' ', list) |
| vim.cmd('botright copen') |
| end |
| end |
| end |
|
|
| |
| |
| RCS[ms.textDocument_documentSymbol] = response_to_list( |
| util.symbols_to_items, |
| 'document symbols', |
| function(ctx) |
| local fname = vim.fn.fnamemodify(vim.uri_to_fname(ctx.params.textDocument.uri), ':.') |
| return string.format('Symbols in %s', fname) |
| end |
| ) |
|
|
| |
| |
| RCS[ms.workspace_symbol] = response_to_list(util.symbols_to_items, 'symbols', function(ctx) |
| return string.format("Symbols matching '%s'", ctx.params.query) |
| end) |
|
|
| |
| |
| RCS[ms.textDocument_rename] = function(_, result, ctx) |
| if not result then |
| vim.notify("Language server couldn't provide rename result", vim.log.levels.INFO) |
| return |
| end |
| local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) |
| util.apply_workspace_edit(result, client.offset_encoding) |
| end |
|
|
| |
| |
| RCS[ms.textDocument_rangeFormatting] = function(_, result, ctx) |
| if not result then |
| return |
| end |
| local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) |
| util.apply_text_edits(result, ctx.bufnr, client.offset_encoding) |
| end |
|
|
| |
| |
| RCS[ms.textDocument_formatting] = function(_, result, ctx) |
| if not result then |
| return |
| end |
| local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) |
| util.apply_text_edits(result, ctx.bufnr, client.offset_encoding) |
| end |
|
|
| |
| |
| RCS[ms.textDocument_completion] = function(_, result, _) |
| if vim.tbl_isempty(result or {}) then |
| return |
| end |
| local cursor = api.nvim_win_get_cursor(0) |
| local row, col = cursor[1], cursor[2] |
| local line = assert(api.nvim_buf_get_lines(0, row - 1, row, false)[1]) |
| local line_to_cursor = line:sub(col + 1) |
| local textMatch = vim.fn.match(line_to_cursor, '\\k*$') |
| local prefix = line_to_cursor:sub(textMatch + 1) |
|
|
| local matches = completion._lsp_to_complete_items(result, prefix) |
| vim.fn.complete(textMatch + 1, matches) |
| end |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function M.hover(_, result, ctx, config) |
| config = config or {} |
| config.focus_id = ctx.method |
| if api.nvim_get_current_buf() ~= ctx.bufnr then |
| |
| return |
| end |
| if not (result and result.contents) then |
| if config.silent ~= true then |
| vim.notify('No information available') |
| end |
| return |
| end |
| local format = 'markdown' |
| local contents |
| if type(result.contents) == 'table' and result.contents.kind == 'plaintext' then |
| format = 'plaintext' |
| contents = vim.split(result.contents.value or '', '\n', { trimempty = true }) |
| else |
| contents = util.convert_input_to_markdown_lines(result.contents) |
| end |
| if vim.tbl_isempty(contents) then |
| if config.silent ~= true then |
| vim.notify('No information available') |
| end |
| return |
| end |
| return util.open_floating_preview(contents, format, config) |
| end |
|
|
| |
| |
| |
| RCS[ms.textDocument_hover] = M.hover |
|
|
| local sig_help_ns = api.nvim_create_namespace('nvim.lsp.signature_help') |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function M.signature_help(_, result, ctx, config) |
| config = config or {} |
| config.focus_id = ctx.method |
| if api.nvim_get_current_buf() ~= ctx.bufnr then |
| |
| return |
| end |
| |
| |
| if not (result and result.signatures and result.signatures[1]) then |
| if config.silent ~= true then |
| print('No signature help available') |
| end |
| return |
| end |
| local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) |
| local triggers = |
| vim.tbl_get(client.server_capabilities, 'signatureHelpProvider', 'triggerCharacters') |
| local ft = vim.bo[ctx.bufnr].filetype |
| local lines, hl = util.convert_signature_help_to_markdown_lines(result, ft, triggers) |
| if not lines or vim.tbl_isempty(lines) then |
| if config.silent ~= true then |
| print('No signature help available') |
| end |
| return |
| end |
| local fbuf, fwin = util.open_floating_preview(lines, 'markdown', config) |
| |
| if hl then |
| vim.hl.range( |
| fbuf, |
| sig_help_ns, |
| 'LspSignatureActiveParameter', |
| { hl[1], hl[2] }, |
| { hl[3], hl[4] } |
| ) |
| end |
| return fbuf, fwin |
| end |
|
|
| |
| |
| |
| RCS[ms.textDocument_signatureHelp] = M.signature_help |
|
|
| |
| |
| RCS[ms.textDocument_documentHighlight] = function(_, result, ctx) |
| if not result then |
| return |
| end |
| local client_id = ctx.client_id |
| local client = vim.lsp.get_client_by_id(client_id) |
| if not client then |
| return |
| end |
| util.buf_highlight_references(ctx.bufnr, result, client.offset_encoding) |
| end |
|
|
| |
| |
| |
| |
| |
| |
| |
| local function make_call_hierarchy_handler(direction) |
| |
| return function(_, result) |
| if not result then |
| return |
| end |
| local items = {} |
| for _, call_hierarchy_call in pairs(result) do |
| |
| local call_hierarchy_item = call_hierarchy_call[direction] |
| for _, range in pairs(call_hierarchy_call.fromRanges) do |
| table.insert(items, { |
| filename = assert(vim.uri_to_fname(call_hierarchy_item.uri)), |
| text = call_hierarchy_item.name, |
| lnum = range.start.line + 1, |
| col = range.start.character + 1, |
| }) |
| end |
| end |
| vim.fn.setqflist({}, ' ', { title = 'LSP call hierarchy', items = items }) |
| vim.cmd('botright copen') |
| end |
| end |
|
|
| |
| |
| RCS[ms.callHierarchy_incomingCalls] = make_call_hierarchy_handler('from') |
|
|
| |
| |
| RCS[ms.callHierarchy_outgoingCalls] = make_call_hierarchy_handler('to') |
|
|
| |
| local function make_type_hierarchy_handler() |
| |
| return function(_, result, ctx, _) |
| if not result then |
| return |
| end |
| local function format_item(item) |
| if not item.detail or #item.detail == 0 then |
| return item.name |
| end |
| return string.format('%s %s', item.name, item.detail) |
| end |
| local client = assert(vim.lsp.get_client_by_id(ctx.client_id)) |
| local items = {} |
| for _, type_hierarchy_item in pairs(result) do |
| local col = util._get_line_byte_from_position( |
| ctx.bufnr, |
| type_hierarchy_item.range.start, |
| client.offset_encoding |
| ) |
| table.insert(items, { |
| filename = assert(vim.uri_to_fname(type_hierarchy_item.uri)), |
| text = format_item(type_hierarchy_item), |
| lnum = type_hierarchy_item.range.start.line + 1, |
| col = col + 1, |
| }) |
| end |
| vim.fn.setqflist({}, ' ', { title = 'LSP type hierarchy', items = items }) |
| vim.cmd('botright copen') |
| end |
| end |
|
|
| |
| |
| RCS[ms.typeHierarchy_subtypes] = make_type_hierarchy_handler() |
|
|
| |
| |
| RCS[ms.typeHierarchy_supertypes] = make_type_hierarchy_handler() |
|
|
| |
| |
| NSC['window/logMessage'] = function(_, params, ctx) |
| local message_type = params.type |
| local message = params.message |
| local client_id = ctx.client_id |
| local client = vim.lsp.get_client_by_id(client_id) |
| local client_name = client and client.name or string.format('id=%d', client_id) |
| if not client then |
| err_message('LSP[', client_name, '] client has shut down after sending ', message) |
| end |
| if message_type == protocol.MessageType.Error then |
| log.error(message) |
| elseif message_type == protocol.MessageType.Warning then |
| log.warn(message) |
| elseif message_type == protocol.MessageType.Info or message_type == protocol.MessageType.Log then |
| log.info(message) |
| else |
| log.debug(message) |
| end |
| return params |
| end |
|
|
| |
| |
| NSC['window/showMessage'] = function(_, params, ctx) |
| local message_type = params.type |
| local message = params.message |
| local client_id = ctx.client_id |
| local client = vim.lsp.get_client_by_id(client_id) |
| local client_name = client and client.name or string.format('id=%d', client_id) |
| if not client then |
| err_message('LSP[', client_name, '] client has shut down after sending ', message) |
| end |
| if message_type == protocol.MessageType.Error then |
| err_message('LSP[', client_name, '] ', message) |
| else |
| message = ('LSP[%s][%s] %s\n'):format(client_name, protocol.MessageType[message_type], message) |
| api.nvim_echo({ { message } }, true, {}) |
| end |
| return params |
| end |
|
|
| |
| |
| |
| RSC[ms.window_showDocument] = function(_, params, ctx) |
| local uri = params.uri |
|
|
| if params.external then |
| |
| local cmd, err = vim.ui.open(uri) |
| local ret = cmd and cmd:wait(2000) or nil |
|
|
| if ret == nil or ret.code ~= 0 then |
| return { |
| success = false, |
| error = { |
| code = protocol.ErrorCodes.UnknownErrorCode, |
| message = ret and ret.stderr or err, |
| }, |
| } |
| end |
|
|
| return { success = true } |
| end |
|
|
| local client_id = ctx.client_id |
| local client = vim.lsp.get_client_by_id(client_id) |
| local client_name = client and client.name or string.format('id=%d', client_id) |
| if not client then |
| err_message('LSP[', client_name, '] client has shut down after sending ', ctx.method) |
| return vim.NIL |
| end |
|
|
| local location = { |
| uri = uri, |
| range = params.selection, |
| } |
|
|
| local success = util.show_document(location, client.offset_encoding, { |
| reuse_win = true, |
| focus = params.takeFocus, |
| }) |
| return { success = success or false } |
| end |
|
|
| |
| RSC[ms.workspace_inlayHint_refresh] = function(err, result, ctx) |
| return vim.lsp.inlay_hint.on_refresh(err, result, ctx) |
| end |
|
|
| |
| RSC[ms.workspace_semanticTokens_refresh] = function(err, result, ctx) |
| return vim.lsp.semantic_tokens._refresh(err, result, ctx) |
| end |
|
|
| |
| |
| M = vim.tbl_extend('force', M, RSC, NSC, RCS) |
|
|
| |
| for k, fn in pairs(M) do |
| |
| M[k] = function(err, result, ctx, config) |
| if log.trace() then |
| log.trace('default_handler', ctx.method, { |
| err = err, |
| result = result, |
| ctx = vim.inspect(ctx), |
| }) |
| end |
|
|
| |
| if err and err.code ~= protocol.ErrorCodes.ServerCancelled then |
| |
| |
| |
| |
| |
|
|
| |
| if err.code ~= protocol.ErrorCodes.ContentModified then |
| local client = vim.lsp.get_client_by_id(ctx.client_id) |
| local client_name = client and client.name or string.format('client_id=%d', ctx.client_id) |
|
|
| err_message(client_name .. ': ' .. tostring(err.code) .. ': ' .. err.message) |
| end |
| return |
| end |
|
|
| |
| return fn(err, result, ctx, config) |
| end |
| end |
|
|
| return M |
|
|