aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp/diagnostic.lua
diff options
context:
space:
mode:
authorJaehwang Jung <tomtomjhj@gmail.com>2023-03-07 15:17:52 +0900
committerGitHub <noreply@github.com>2023-03-07 07:17:52 +0100
commit706bcab75eaad2c370d61bf828531054439d3a3e (patch)
treeae55f92afbb54348d6a3105a3300921c398ef9ff /runtime/lua/vim/lsp/diagnostic.lua
parent7a44231832fbeb0fe87553f75519ca46e91cb7ab (diff)
downloadrneovim-706bcab75eaad2c370d61bf828531054439d3a3e.tar.gz
rneovim-706bcab75eaad2c370d61bf828531054439d3a3e.tar.bz2
rneovim-706bcab75eaad2c370d61bf828531054439d3a3e.zip
docs(lsp): change type annotations from number → integer (#22510)
Diffstat (limited to 'runtime/lua/vim/lsp/diagnostic.lua')
-rw-r--r--runtime/lua/vim/lsp/diagnostic.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/lua/vim/lsp/diagnostic.lua b/runtime/lua/vim/lsp/diagnostic.lua
index 5e2bf75f1b..b27bf6e425 100644
--- a/runtime/lua/vim/lsp/diagnostic.lua
+++ b/runtime/lua/vim/lsp/diagnostic.lua
@@ -4,7 +4,7 @@
---@field range Range
---@field message string
---@field severity DiagnosticSeverity|nil
----@field code number | string
+---@field code integer | string
---@field source string
---@field tags DiagnosticTag[]
---@field relatedInformation DiagnosticRelatedInformation[]
@@ -135,7 +135,7 @@ local _client_namespaces = {}
--- Get the diagnostic namespace associated with an LSP client |vim.diagnostic|.
---
----@param client_id number The id of the LSP client
+---@param client_id integer The id of the LSP client
function M.get_namespace(client_id)
vim.validate({ client_id = { client_id, 'n' } })
if not _client_namespaces[client_id] then
@@ -212,7 +212,7 @@ end
--- this method signature is still used internally in some parts of the LSP
--- implementation so it's simply marked @private rather than @deprecated.
---
----@param client_id number
+---@param client_id integer
---@param buffer_client_map table map of buffers to active clients
---@private
function M.reset(client_id, buffer_client_map)
@@ -232,14 +232,14 @@ end
--- Marked private as this is used internally by the LSP subsystem, but
--- most users should instead prefer |vim.diagnostic.get()|.
---
----@param bufnr number|nil The buffer number
----@param line_nr number|nil The line number
+---@param bufnr integer|nil The buffer number
+---@param line_nr integer|nil The line number
---@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.
----@param client_id|nil number the client id
+---@param client_id integer|nil the client id
---@return table Table with map of line number to list of diagnostics.
--- Structured: { [1] = {...}, [5] = {.... } }
---@private