mirror of
https://github.com/neovim/neovim.git
synced 2025-12-16 03:15:39 +00:00
refactor: remove functions marked for deprecation in 0.8 (#19299)
This commit is contained in:
@@ -21,17 +21,6 @@ local function get_client_id(client_id)
|
||||
return client_id
|
||||
end
|
||||
|
||||
---@private
|
||||
local function get_bufnr(bufnr)
|
||||
if not bufnr then
|
||||
return vim.api.nvim_get_current_buf()
|
||||
elseif bufnr == 0 then
|
||||
return vim.api.nvim_get_current_buf()
|
||||
end
|
||||
|
||||
return bufnr
|
||||
end
|
||||
|
||||
---@private
|
||||
local function severity_lsp_to_vim(severity)
|
||||
if type(severity) == 'string' then
|
||||
@@ -238,75 +227,6 @@ function M.reset(client_id, buffer_client_map)
|
||||
end)
|
||||
end
|
||||
|
||||
-- Deprecated Functions {{{
|
||||
|
||||
--- Save diagnostics to the current buffer.
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.set()|
|
||||
---
|
||||
--- Handles saving diagnostics from multiple clients in the same buffer.
|
||||
---@param diagnostics Diagnostic[]
|
||||
---@param bufnr number
|
||||
---@param client_id number
|
||||
---@private
|
||||
function M.save(diagnostics, bufnr, client_id)
|
||||
vim.deprecate('vim.lsp.diagnostic.save', 'vim.diagnostic.set', '0.8')
|
||||
local namespace = M.get_namespace(client_id)
|
||||
vim.diagnostic.set(namespace, bufnr, diagnostic_lsp_to_vim(diagnostics, bufnr, client_id))
|
||||
end
|
||||
-- }}}
|
||||
|
||||
--- Get all diagnostics for clients
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.get()|
|
||||
---
|
||||
---@param client_id number Restrict included diagnostics to the client
|
||||
--- If nil, diagnostics of all clients are included.
|
||||
---@return table with diagnostics grouped by bufnr (bufnr: Diagnostic[])
|
||||
function M.get_all(client_id)
|
||||
vim.deprecate('vim.lsp.diagnostic.get_all', 'vim.diagnostic.get', '0.8')
|
||||
local result = {}
|
||||
local namespace
|
||||
if client_id then
|
||||
namespace = M.get_namespace(client_id)
|
||||
end
|
||||
for _, bufnr in ipairs(vim.api.nvim_list_bufs()) do
|
||||
local diagnostics = diagnostic_vim_to_lsp(vim.diagnostic.get(bufnr, { namespace = namespace }))
|
||||
result[bufnr] = diagnostics
|
||||
end
|
||||
return result
|
||||
end
|
||||
|
||||
--- Return associated diagnostics for bufnr
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.get()|
|
||||
---
|
||||
---@param bufnr number
|
||||
---@param client_id number|nil If nil, then return all of the diagnostics.
|
||||
--- Else, return just the diagnostics associated with the client_id.
|
||||
---@param predicate function|nil Optional function for filtering diagnostics
|
||||
function M.get(bufnr, client_id, predicate)
|
||||
vim.deprecate('vim.lsp.diagnostic.get', 'vim.diagnostic.get', '0.8')
|
||||
predicate = predicate or function()
|
||||
return true
|
||||
end
|
||||
if client_id == nil then
|
||||
local all_diagnostics = {}
|
||||
vim.lsp.for_each_buffer_client(bufnr, function(_, iter_client_id, _)
|
||||
local iter_diagnostics = vim.tbl_filter(predicate, M.get(bufnr, iter_client_id))
|
||||
for _, diagnostic in ipairs(iter_diagnostics) do
|
||||
table.insert(all_diagnostics, diagnostic)
|
||||
end
|
||||
end)
|
||||
return all_diagnostics
|
||||
end
|
||||
|
||||
local namespace = M.get_namespace(client_id)
|
||||
return diagnostic_vim_to_lsp(
|
||||
vim.tbl_filter(predicate, vim.diagnostic.get(bufnr, { namespace = namespace }))
|
||||
)
|
||||
end
|
||||
|
||||
--- Get the diagnostics by line
|
||||
---
|
||||
--- Marked private as this is used internally by the LSP subsystem, but
|
||||
@@ -344,405 +264,4 @@ function M.get_line_diagnostics(bufnr, line_nr, opts, client_id)
|
||||
return diagnostic_vim_to_lsp(vim.diagnostic.get(bufnr, opts))
|
||||
end
|
||||
|
||||
--- Get the counts for a particular severity
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.get_count()|
|
||||
---
|
||||
---@param bufnr number The buffer number
|
||||
---@param severity DiagnosticSeverity
|
||||
---@param client_id number the client id
|
||||
function M.get_count(bufnr, severity, client_id)
|
||||
vim.deprecate('vim.lsp.diagnostic.get_count', 'vim.diagnostic.get', '0.8')
|
||||
severity = severity_lsp_to_vim(severity)
|
||||
local opts = { severity = severity }
|
||||
if client_id ~= nil then
|
||||
opts.namespace = M.get_namespace(client_id)
|
||||
end
|
||||
|
||||
return #vim.diagnostic.get(bufnr, opts)
|
||||
end
|
||||
|
||||
--- Get the previous diagnostic closest to the cursor_position
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.get_prev()|
|
||||
---
|
||||
---@param opts table See |vim.lsp.diagnostic.goto_next()|
|
||||
---@return table Previous diagnostic
|
||||
function M.get_prev(opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.get_prev', 'vim.diagnostic.get_prev', '0.8')
|
||||
if opts then
|
||||
if opts.severity then
|
||||
opts.severity = severity_lsp_to_vim(opts.severity)
|
||||
elseif opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
end
|
||||
return diagnostic_vim_to_lsp({ vim.diagnostic.get_prev(opts) })[1]
|
||||
end
|
||||
|
||||
--- Return the pos, {row, col}, for the prev diagnostic in the current buffer.
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.get_prev_pos()|
|
||||
---
|
||||
---@param opts table See |vim.lsp.diagnostic.goto_next()|
|
||||
---@return table Previous diagnostic position
|
||||
function M.get_prev_pos(opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.get_prev_pos', 'vim.diagnostic.get_prev_pos', '0.8')
|
||||
if opts then
|
||||
if opts.severity then
|
||||
opts.severity = severity_lsp_to_vim(opts.severity)
|
||||
elseif opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
end
|
||||
return vim.diagnostic.get_prev_pos(opts)
|
||||
end
|
||||
|
||||
--- Move to the previous diagnostic
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.goto_prev()|
|
||||
---
|
||||
---@param opts table See |vim.lsp.diagnostic.goto_next()|
|
||||
function M.goto_prev(opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.goto_prev', 'vim.diagnostic.goto_prev', '0.8')
|
||||
if opts then
|
||||
if opts.severity then
|
||||
opts.severity = severity_lsp_to_vim(opts.severity)
|
||||
elseif opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
end
|
||||
return vim.diagnostic.goto_prev(opts)
|
||||
end
|
||||
|
||||
--- Get the next diagnostic closest to the cursor_position
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.get_next()|
|
||||
---
|
||||
---@param opts table See |vim.lsp.diagnostic.goto_next()|
|
||||
---@return table Next diagnostic
|
||||
function M.get_next(opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.get_next', 'vim.diagnostic.get_next', '0.8')
|
||||
if opts then
|
||||
if opts.severity then
|
||||
opts.severity = severity_lsp_to_vim(opts.severity)
|
||||
elseif opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
end
|
||||
return diagnostic_vim_to_lsp({ vim.diagnostic.get_next(opts) })[1]
|
||||
end
|
||||
|
||||
--- Return the pos, {row, col}, for the next diagnostic in the current buffer.
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.get_next_pos()|
|
||||
---
|
||||
---@param opts table See |vim.lsp.diagnostic.goto_next()|
|
||||
---@return table Next diagnostic position
|
||||
function M.get_next_pos(opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.get_next_pos', 'vim.diagnostic.get_next_pos', '0.8')
|
||||
if opts then
|
||||
if opts.severity then
|
||||
opts.severity = severity_lsp_to_vim(opts.severity)
|
||||
elseif opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
end
|
||||
return vim.diagnostic.get_next_pos(opts)
|
||||
end
|
||||
|
||||
--- Move to the next diagnostic
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.goto_next()|
|
||||
function M.goto_next(opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.goto_next', 'vim.diagnostic.goto_next', '0.8')
|
||||
if opts then
|
||||
if opts.severity then
|
||||
opts.severity = severity_lsp_to_vim(opts.severity)
|
||||
elseif opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
end
|
||||
return vim.diagnostic.goto_next(opts)
|
||||
end
|
||||
|
||||
--- Set signs for given diagnostics
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic._set_signs()|
|
||||
---
|
||||
---@param diagnostics Diagnostic[]
|
||||
---@param bufnr number The buffer number
|
||||
---@param client_id number the client id
|
||||
---@param sign_ns number|nil
|
||||
---@param opts table Configuration for signs. Keys:
|
||||
--- - priority: Set the priority of the signs.
|
||||
--- - severity_limit (DiagnosticSeverity):
|
||||
--- - Limit severity of diagnostics found. E.g. "Warning" means { "Error", "Warning" } will be valid.
|
||||
function M.set_signs(diagnostics, bufnr, client_id, _, opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.set_signs', nil, '0.8')
|
||||
local namespace = M.get_namespace(client_id)
|
||||
if opts and not opts.severity and opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
|
||||
vim.diagnostic._set_signs(
|
||||
namespace,
|
||||
bufnr,
|
||||
diagnostic_lsp_to_vim(diagnostics, bufnr, client_id),
|
||||
opts
|
||||
)
|
||||
end
|
||||
|
||||
--- Set underline for given diagnostics
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic._set_underline()|
|
||||
---
|
||||
---@param diagnostics Diagnostic[]
|
||||
---@param bufnr number: The buffer number
|
||||
---@param client_id number: The client id
|
||||
---@param diagnostic_ns number|nil: The namespace
|
||||
---@param opts table: Configuration table:
|
||||
--- - severity_limit (DiagnosticSeverity):
|
||||
--- - Limit severity of diagnostics found. E.g. "Warning" means { "Error", "Warning" } will be valid.
|
||||
function M.set_underline(diagnostics, bufnr, client_id, _, opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.set_underline', nil, '0.8')
|
||||
local namespace = M.get_namespace(client_id)
|
||||
if opts and not opts.severity and opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
return vim.diagnostic._set_underline(
|
||||
namespace,
|
||||
bufnr,
|
||||
diagnostic_lsp_to_vim(diagnostics, bufnr, client_id),
|
||||
opts
|
||||
)
|
||||
end
|
||||
|
||||
--- Set virtual text given diagnostics
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic._set_virtual_text()|
|
||||
---
|
||||
---@param diagnostics Diagnostic[]
|
||||
---@param bufnr number
|
||||
---@param client_id number
|
||||
---@param diagnostic_ns number
|
||||
---@param opts table Options on how to display virtual text. Keys:
|
||||
--- - prefix (string): Prefix to display before virtual text on line
|
||||
--- - spacing (number): Number of spaces to insert before virtual text
|
||||
--- - severity_limit (DiagnosticSeverity):
|
||||
--- - Limit severity of diagnostics found. E.g. "Warning" means { "Error", "Warning" } will be valid.
|
||||
function M.set_virtual_text(diagnostics, bufnr, client_id, _, opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.set_virtual_text', nil, '0.8')
|
||||
local namespace = M.get_namespace(client_id)
|
||||
if opts and not opts.severity and opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
return vim.diagnostic._set_virtual_text(
|
||||
namespace,
|
||||
bufnr,
|
||||
diagnostic_lsp_to_vim(diagnostics, bufnr, client_id),
|
||||
opts
|
||||
)
|
||||
end
|
||||
|
||||
--- Default function to get text chunks to display using |nvim_buf_set_extmark()|.
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.get_virt_text_chunks()|
|
||||
---
|
||||
---@param bufnr number The buffer to display the virtual text in
|
||||
---@param line number The line number to display the virtual text on
|
||||
---@param line_diags Diagnostic[] The diagnostics associated with the line
|
||||
---@param opts table See {opts} from |vim.lsp.diagnostic.set_virtual_text()|
|
||||
---@return an array of [text, hl_group] arrays. This can be passed directly to
|
||||
--- the {virt_text} option of |nvim_buf_set_extmark()|.
|
||||
function M.get_virtual_text_chunks_for_line(bufnr, _, line_diags, opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.get_virtual_text_chunks_for_line', nil, '0.8')
|
||||
return vim.diagnostic._get_virt_text_chunks(diagnostic_lsp_to_vim(line_diags, bufnr), opts)
|
||||
end
|
||||
|
||||
--- Open a floating window with the diagnostics from {position}
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.show_position_diagnostics()|
|
||||
---
|
||||
---@param opts table|nil Configuration keys
|
||||
--- - severity: (DiagnosticSeverity, default nil)
|
||||
--- - Only return diagnostics with this severity. Overrides severity_limit
|
||||
--- - severity_limit: (DiagnosticSeverity, default nil)
|
||||
--- - Limit severity of diagnostics found. E.g. "Warning" means { "Error", "Warning" } will be valid.
|
||||
--- - all opts for |show_diagnostics()| can be used here
|
||||
---@param buf_nr number|nil The buffer number
|
||||
---@param position table|nil The (0,0)-indexed position
|
||||
---@return table {popup_bufnr, win_id}
|
||||
function M.show_position_diagnostics(opts, buf_nr, position)
|
||||
vim.deprecate('vim.lsp.diagnostic.show_position_diagnostics', 'vim.diagnostic.open_float', '0.8')
|
||||
opts = opts or {}
|
||||
opts.scope = 'cursor'
|
||||
opts.pos = position
|
||||
if opts.severity then
|
||||
opts.severity = severity_lsp_to_vim(opts.severity)
|
||||
elseif opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
return vim.diagnostic.open_float(buf_nr, opts)
|
||||
end
|
||||
|
||||
--- Open a floating window with the diagnostics from {line_nr}
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.open_float()|
|
||||
---
|
||||
---@param opts table Configuration table
|
||||
--- - all opts for |vim.lsp.diagnostic.get_line_diagnostics()| and
|
||||
--- |show_diagnostics()| can be used here
|
||||
---@param buf_nr number|nil The buffer number
|
||||
---@param line_nr number|nil The line number
|
||||
---@param client_id number|nil the client id
|
||||
---@return table {popup_bufnr, win_id}
|
||||
function M.show_line_diagnostics(opts, buf_nr, line_nr, client_id)
|
||||
vim.deprecate('vim.lsp.diagnostic.show_line_diagnostics', 'vim.diagnostic.open_float', '0.8')
|
||||
opts = opts or {}
|
||||
opts.scope = 'line'
|
||||
opts.pos = line_nr
|
||||
if client_id then
|
||||
opts.namespace = M.get_namespace(client_id)
|
||||
end
|
||||
return vim.diagnostic.open_float(buf_nr, opts)
|
||||
end
|
||||
|
||||
--- Redraw diagnostics for the given buffer and client
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.show()|
|
||||
---
|
||||
--- This calls the "textDocument/publishDiagnostics" handler manually using
|
||||
--- the cached diagnostics already received from the server. This can be useful
|
||||
--- for redrawing diagnostics after making changes in diagnostics
|
||||
--- configuration. |lsp-handler-configuration|
|
||||
---
|
||||
---@param bufnr (optional, number): Buffer handle, defaults to current
|
||||
---@param client_id (optional, number): Redraw diagnostics for the given
|
||||
--- client. The default is to redraw diagnostics for all attached
|
||||
--- clients.
|
||||
function M.redraw(bufnr, client_id)
|
||||
vim.deprecate('vim.lsp.diagnostic.redraw', 'vim.diagnostic.show', '0.8')
|
||||
bufnr = get_bufnr(bufnr)
|
||||
if not client_id then
|
||||
return vim.lsp.for_each_buffer_client(bufnr, function(client)
|
||||
M.redraw(bufnr, client.id)
|
||||
end)
|
||||
end
|
||||
|
||||
local namespace = M.get_namespace(client_id)
|
||||
return vim.diagnostic.show(namespace, bufnr)
|
||||
end
|
||||
|
||||
--- Sets the quickfix list
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.setqflist()|
|
||||
---
|
||||
---@param opts table|nil Configuration table. Keys:
|
||||
--- - {open}: (boolean, default true)
|
||||
--- - Open quickfix list after set
|
||||
--- - {client_id}: (number)
|
||||
--- - If nil, will consider all clients attached to buffer.
|
||||
--- - {severity}: (DiagnosticSeverity)
|
||||
--- - Exclusive severity to consider. Overrides {severity_limit}
|
||||
--- - {severity_limit}: (DiagnosticSeverity)
|
||||
--- - Limit severity of diagnostics found. E.g. "Warning" means { "Error", "Warning" } will be valid.
|
||||
--- - {workspace}: (boolean, default true)
|
||||
--- - Set the list with workspace diagnostics
|
||||
function M.set_qflist(opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.set_qflist', 'vim.diagnostic.setqflist', '0.8')
|
||||
opts = opts or {}
|
||||
if opts.severity then
|
||||
opts.severity = severity_lsp_to_vim(opts.severity)
|
||||
elseif opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
if opts.client_id then
|
||||
opts.client_id = nil
|
||||
opts.namespace = M.get_namespace(opts.client_id)
|
||||
end
|
||||
local workspace = vim.F.if_nil(opts.workspace, true)
|
||||
opts.bufnr = not workspace and 0
|
||||
return vim.diagnostic.setqflist(opts)
|
||||
end
|
||||
|
||||
--- Sets the location list
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.setloclist()|
|
||||
---
|
||||
---@param opts table|nil Configuration table. Keys:
|
||||
--- - {open}: (boolean, default true)
|
||||
--- - Open loclist after set
|
||||
--- - {client_id}: (number)
|
||||
--- - If nil, will consider all clients attached to buffer.
|
||||
--- - {severity}: (DiagnosticSeverity)
|
||||
--- - Exclusive severity to consider. Overrides {severity_limit}
|
||||
--- - {severity_limit}: (DiagnosticSeverity)
|
||||
--- - Limit severity of diagnostics found. E.g. "Warning" means { "Error", "Warning" } will be valid.
|
||||
--- - {workspace}: (boolean, default false)
|
||||
--- - Set the list with workspace diagnostics
|
||||
function M.set_loclist(opts)
|
||||
vim.deprecate('vim.lsp.diagnostic.set_loclist', 'vim.diagnostic.setloclist', '0.8')
|
||||
opts = opts or {}
|
||||
if opts.severity then
|
||||
opts.severity = severity_lsp_to_vim(opts.severity)
|
||||
elseif opts.severity_limit then
|
||||
opts.severity = { min = severity_lsp_to_vim(opts.severity_limit) }
|
||||
end
|
||||
if opts.client_id then
|
||||
opts.client_id = nil
|
||||
opts.namespace = M.get_namespace(opts.client_id)
|
||||
end
|
||||
local workspace = vim.F.if_nil(opts.workspace, false)
|
||||
opts.bufnr = not workspace and 0
|
||||
return vim.diagnostic.setloclist(opts)
|
||||
end
|
||||
|
||||
--- Disable diagnostics for the given buffer and client
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.disable()|
|
||||
---
|
||||
---@param bufnr (optional, number): Buffer handle, defaults to current
|
||||
---@param client_id (optional, number): Disable diagnostics for the given
|
||||
--- client. The default is to disable diagnostics for all attached
|
||||
--- clients.
|
||||
-- Note that when diagnostics are disabled for a buffer, the server will still
|
||||
-- send diagnostic information and the client will still process it. The
|
||||
-- diagnostics are simply not displayed to the user.
|
||||
function M.disable(bufnr, client_id)
|
||||
vim.deprecate('vim.lsp.diagnostic.disable', 'vim.diagnostic.disable', '0.8')
|
||||
if not client_id then
|
||||
return vim.lsp.for_each_buffer_client(bufnr, function(client)
|
||||
M.disable(bufnr, client.id)
|
||||
end)
|
||||
end
|
||||
|
||||
bufnr = get_bufnr(bufnr)
|
||||
local namespace = M.get_namespace(client_id)
|
||||
return vim.diagnostic.disable(bufnr, namespace)
|
||||
end
|
||||
|
||||
--- Enable diagnostics for the given buffer and client
|
||||
---
|
||||
---@deprecated Prefer |vim.diagnostic.enable()|
|
||||
---
|
||||
---@param bufnr (optional, number): Buffer handle, defaults to current
|
||||
---@param client_id (optional, number): Enable diagnostics for the given
|
||||
--- client. The default is to enable diagnostics for all attached
|
||||
--- clients.
|
||||
function M.enable(bufnr, client_id)
|
||||
vim.deprecate('vim.lsp.diagnostic.enable', 'vim.diagnostic.enable', '0.8')
|
||||
if not client_id then
|
||||
return vim.lsp.for_each_buffer_client(bufnr, function(client)
|
||||
M.enable(bufnr, client.id)
|
||||
end)
|
||||
end
|
||||
|
||||
bufnr = get_bufnr(bufnr)
|
||||
local namespace = M.get_namespace(client_id)
|
||||
return vim.diagnostic.enable(bufnr, namespace)
|
||||
end
|
||||
|
||||
-- }}}
|
||||
|
||||
return M
|
||||
|
||||
@@ -1722,35 +1722,6 @@ function M.locations_to_items(locations, offset_encoding)
|
||||
return items
|
||||
end
|
||||
|
||||
--- Fills target window's location list with given list of items.
|
||||
--- Can be obtained with e.g. |vim.lsp.util.locations_to_items()|.
|
||||
--- Defaults to current window.
|
||||
---
|
||||
---@deprecated Use |setloclist()|
|
||||
---
|
||||
---@param items (table) list of items
|
||||
function M.set_loclist(items, win_id)
|
||||
vim.deprecate('vim.lsp.util.set_loclist', 'setloclist', '0.8')
|
||||
vim.fn.setloclist(win_id or 0, {}, ' ', {
|
||||
title = 'Language Server',
|
||||
items = items,
|
||||
})
|
||||
end
|
||||
|
||||
--- Fills quickfix list with given list of items.
|
||||
--- Can be obtained with e.g. |vim.lsp.util.locations_to_items()|.
|
||||
---
|
||||
---@deprecated Use |setqflist()|
|
||||
---
|
||||
---@param items (table) list of items
|
||||
function M.set_qflist(items)
|
||||
vim.deprecate('vim.lsp.util.set_qflist', 'setqflist', '0.8')
|
||||
vim.fn.setqflist({}, ' ', {
|
||||
title = 'Language Server',
|
||||
items = items,
|
||||
})
|
||||
end
|
||||
|
||||
-- According to LSP spec, if the client set "symbolKind.valueSet",
|
||||
-- the client must handle it properly even if it receives a value outside the specification.
|
||||
-- https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocument_documentSymbol
|
||||
|
||||
Reference in New Issue
Block a user