diff options
author | Lewis Russell <lewis6991@gmail.com> | 2024-10-24 10:31:34 +0100 |
---|---|---|
committer | Lewis Russell <lewis6991@gmail.com> | 2024-10-24 10:53:03 +0100 |
commit | 3275ae830da97ef907ff3cfb0170706b6a430f57 (patch) | |
tree | 2cf4a9ae6e306900497abefd56f2aa525344a745 | |
parent | 2ee39b7eb46f091bf22dd1ba3066afff51139bdd (diff) | |
download | rneovim-3275ae830da97ef907ff3cfb0170706b6a430f57.tar.gz rneovim-3275ae830da97ef907ff3cfb0170706b6a430f57.tar.bz2 rneovim-3275ae830da97ef907ff3cfb0170706b6a430f57.zip |
fix(lsp.protocal): improve typing of constants
-rw-r--r-- | runtime/lua/vim/lsp/protocol.lua | 6 | ||||
-rwxr-xr-x | scripts/gen_vimdoc.lua | 3 |
2 files changed, 8 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 diff --git a/scripts/gen_vimdoc.lua b/scripts/gen_vimdoc.lua index f7c95e222d..9cd5b598da 100755 --- a/scripts/gen_vimdoc.lua +++ b/scripts/gen_vimdoc.lua @@ -289,6 +289,9 @@ local config = { }, fn_xform = function(fun) fun.name = fun.name:gsub('result%.', '') + if fun.module == 'vim.lsp.protocol' then + fun.classvar = nil + end end, section_fmt = function(name) if name:lower() == 'lsp' then |