commit 3b1d0e7f701b53d72e4fdf5a721d2684d055cc1d
parent 97bbc49cda267b63c773826858f3337721853746
Author: Christian Clason <c.clason@uni-graz.at>
Date: Mon, 17 Mar 2025 10:58:30 +0100
fix(diagnostic): remove deprecated `severity_limit` option
Deprecated to be removed in 0.11
Diffstat:
2 files changed, 2 insertions(+), 9 deletions(-)
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt
@@ -525,7 +525,8 @@ REMOVED FEATURES *news-removed*
These deprecated features were removed.
-• N/A
+• option `severity_limit` for `vim.lsp.diagnostic` (use `min=severity`
+ instead |vim.diagnostic.severity|).
==============================================================================
DEPRECATIONS *news-deprecations*
diff --git a/runtime/lua/vim/lsp/diagnostic.lua b/runtime/lua/vim/lsp/diagnostic.lua
@@ -200,13 +200,6 @@ function M.get_namespace(client_id, is_pull)
end
end
-local function convert_severity(opt)
- if type(opt) == 'table' and not opt.severity and opt.severity_limit then
- vim.deprecate('severity_limit', '{min = severity} See vim.diagnostic.severity', '0.11')
- opt.severity = { min = severity_lsp_to_vim(opt.severity_limit) }
- end
-end
-
--- @param uri string
--- @param client_id? integer
--- @param diagnostics lsp.Diagnostic[]
@@ -303,7 +296,6 @@ end
---@private
function M.get_line_diagnostics(bufnr, line_nr, opts, client_id)
vim.deprecate('vim.lsp.diagnostic.get_line_diagnostics', 'vim.diagnostic.get', '0.12')
- convert_severity(opts)
local diag_opts = {} --- @type vim.diagnostic.GetOpts
if opts and opts.severity then