diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-02-24 14:49:36 +0100 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-02-24 15:45:54 +0100 |
commit | a0394b648c2486ce7085d3e6e7541024e1a3fe9a (patch) | |
tree | 8e2f3ba1e1a60a9e4ee22e4195e735ef8fcfcc58 /runtime/lua/vim/lsp/client.lua | |
parent | febf4810026a1f54f63cedbfef2e30e72cf535bf (diff) | |
download | rneovim-a0394b648c2486ce7085d3e6e7541024e1a3fe9a.tar.gz rneovim-a0394b648c2486ce7085d3e6e7541024e1a3fe9a.tar.bz2 rneovim-a0394b648c2486ce7085d3e6e7541024e1a3fe9a.zip |
docs(lsp): mark `ClientConfig.init_options` as optional
Followup to neovim/neovim#27443
Diffstat (limited to 'runtime/lua/vim/lsp/client.lua')
-rw-r--r-- | runtime/lua/vim/lsp/client.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/client.lua b/runtime/lua/vim/lsp/client.lua index a460d95cc6..c1b41a7183 100644 --- a/runtime/lua/vim/lsp/client.lua +++ b/runtime/lua/vim/lsp/client.lua @@ -21,7 +21,7 @@ local validate = vim.validate --- @field handlers? table<string,function> --- @field settings? table --- @field commands? table<string,fun(command: lsp.Command, ctx: table)> ---- @field init_options table +--- @field init_options? table --- @field name? string --- @field get_language_id? fun(bufnr: integer, filetype: string): string --- @field offset_encoding? string |