diff options
author | Mathias Fußenegger <mfussenegger@users.noreply.github.com> | 2020-02-13 20:38:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-13 20:38:47 +0100 |
commit | d9657b3ae206435d93dacb2025d9b600da975088 (patch) | |
tree | 46b5b70381d9ea2b30dce37a987bedcdba29b329 | |
parent | a73d8ace0b02866a22f4a71ce97329dbb57073bb (diff) | |
download | rneovim-d9657b3ae206435d93dacb2025d9b600da975088.tar.gz rneovim-d9657b3ae206435d93dacb2025d9b600da975088.tar.bz2 rneovim-d9657b3ae206435d93dacb2025d9b600da975088.zip |
doc/lsp: start_client config cmd must be a list (#11866)
doc/lsp: start_client config cmd must be a list
After the merge of https://github.com/neovim/neovim/pull/11847 cmd can
no longer be a string but must be a list.
-rw-r--r-- | runtime/doc/lsp.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 016a8be7e6..9de2aaf592 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -543,7 +543,7 @@ start_client({config}) *vim.lsp.start_client()* {root_dir} (required, string) Directory where the LSP server will base its rootUri on initialization. - {cmd} (required, string or list treated like + {cmd} (required, list treated like |jobstart()|) Base command that initiates the LSP client. {cmd_cwd} (string, default=|getcwd()|) Directory |