aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp/protocol.lua
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2024-10-24 11:19:38 +0100
committerGitHub <noreply@github.com>2024-10-24 11:19:38 +0100
commit5c44c0240535272064bd4bb11364cb3a64d9b2cb (patch)
tree7e8f780565d187f0da993b13a470a5f423ff87db /runtime/lua/vim/lsp/protocol.lua
parent008782208d826a03ab046bb2cb1bdda27c6554d0 (diff)
parent2dcbfe78fcec5f73ce061bb24b718187b9c6b134 (diff)
downloadrneovim-5c44c0240535272064bd4bb11364cb3a64d9b2cb.tar.gz
rneovim-5c44c0240535272064bd4bb11364cb3a64d9b2cb.tar.bz2
rneovim-5c44c0240535272064bd4bb11364cb3a64d9b2cb.zip
Merge pull request #30929 from lewis6991/fix/lsp_param_encodings
Diffstat (limited to 'runtime/lua/vim/lsp/protocol.lua')
-rw-r--r--runtime/lua/vim/lsp/protocol.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/protocol.lua b/runtime/lua/vim/lsp/protocol.lua
index 1699fff0c1..b299a8438f 100644
--- a/runtime/lua/vim/lsp/protocol.lua
+++ b/runtime/lua/vim/lsp/protocol.lua
@@ -12,6 +12,8 @@ end
local sysname = vim.uv.os_uname().sysname
+--- @class vim.lsp.protocol.constants
+--- @nodoc
local constants = {
--- @enum lsp.DiagnosticSeverity
DiagnosticSeverity = {
@@ -314,7 +316,9 @@ local constants = {
},
}
--- Protocol for the Microsoft Language Server Protocol (mslsp)
+--- Protocol for the Microsoft Language Server Protocol (mslsp)
+--- @class vim.lsp.protocol : vim.lsp.protocol.constants
+--- @nodoc
local protocol = {}
--- @diagnostic disable:no-unknown