diff options
author | Lewis Russell <lewis6991@gmail.com> | 2024-03-05 12:06:15 +0000 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2024-03-05 13:36:46 +0000 |
commit | a4290f462ed7dc81e17b09bd27877b106b24b6bd (patch) | |
tree | ab880e80f92fe337ff4581eba2454bb4b882375a /runtime/lua/vim/lsp/diagnostic.lua | |
parent | 5b312cd5f67646005312d2ebb2ef0d1bc584dcff (diff) | |
download | rneovim-a4290f462ed7dc81e17b09bd27877b106b24b6bd.tar.gz rneovim-a4290f462ed7dc81e17b09bd27877b106b24b6bd.tar.bz2 rneovim-a4290f462ed7dc81e17b09bd27877b106b24b6bd.zip |
docs(lua): improvements for LSP and Diagnostic
Diffstat (limited to 'runtime/lua/vim/lsp/diagnostic.lua')
-rw-r--r-- | runtime/lua/vim/lsp/diagnostic.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/diagnostic.lua b/runtime/lua/vim/lsp/diagnostic.lua index 6156821093..e4620897ac 100644 --- a/runtime/lua/vim/lsp/diagnostic.lua +++ b/runtime/lua/vim/lsp/diagnostic.lua @@ -321,7 +321,7 @@ end ---@param _ lsp.ResponseError? ---@param result lsp.DocumentDiagnosticReport ---@param ctx lsp.HandlerContext ----@param config table Configuration table (see |vim.diagnostic.config()|). +---@param config vim.diagnostic.Opts Configuration table (see |vim.diagnostic.config()|). function M.on_diagnostic(_, result, ctx, config) if result == nil or result.kind == 'unchanged' then return |