neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 02f92978fe4f4d465260a9936dca1526bbe76931
parent 84378c4dd56db9846b70a333530505a8048bd26e
Author: hituzi no sippo <43565959+hituzi-no-sippo@users.noreply.github.com>
Date:   Wed, 10 May 2023 00:24:49 +0900

docs(lsp): fix type of `config.cmd` argument for `vim.lsp.start_client` (#23550)


Diffstat:
Mruntime/doc/lsp.txt | 2+-
Mruntime/lua/vim/lsp.lua | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt @@ -942,7 +942,7 @@ start_client({config}) *vim.lsp.start_client()* Parameters: ~ • {config} (table) Configuration for the server: - • cmd: (table|string|fun(dispatchers: table):table) command + • cmd: (string[]|fun(dispatchers: table):table) command string or list treated like |jobstart()|. The command must launch the language server process. `cmd` can also be a function that creates an RPC client. The function receives diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua @@ -901,7 +901,7 @@ end --- Field `cmd` in {config} is required. --- ---@param config (table) Configuration for the server: ---- - cmd: (table|string|fun(dispatchers: table):table) command string or +--- - cmd: (string[]|fun(dispatchers: table):table) command string or --- list treated like |jobstart()|. The command must launch the language server --- process. `cmd` can also be a function that creates an RPC client. --- The function receives a dispatchers table and must return a table with the