aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp.lua
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-09-29 14:07:21 +0200
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-10-23 14:13:42 +0200
commit3a86b60032bd659c2b12e984abb40cee93568558 (patch)
tree4070063b1f97ea8ab1b91dab66629ffe6030013b /runtime/lua/vim/lsp.lua
parentf6f2334ac28f41994ad6480b1a19e653c659662c (diff)
downloadrneovim-3a86b60032bd659c2b12e984abb40cee93568558.tar.gz
rneovim-3a86b60032bd659c2b12e984abb40cee93568558.tar.bz2
rneovim-3a86b60032bd659c2b12e984abb40cee93568558.zip
docs: misc
Co-authored-by: David Pedersen <limero@me.com> Co-authored-by: Gregory Anders <greg@gpanders.com> Co-authored-by: Leo Schlosser <Leo.Schlosser@Student.HTW-Berlin.de> Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'runtime/lua/vim/lsp.lua')
-rw-r--r--runtime/lua/vim/lsp.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua
index 8a0eef418d..76658b7012 100644
--- a/runtime/lua/vim/lsp.lua
+++ b/runtime/lua/vim/lsp.lua
@@ -235,9 +235,9 @@ end
--- - `name` arbitrary name for the LSP client. Should be unique per language server.
--- - `cmd` command string[] or function, described at |vim.lsp.start_client()|.
--- - `root_dir` path to the project root. By default this is used to decide if an existing client
---- should be re-used. The example above uses |vim.fs.root()| and |vim.fs.dirname()| to detect
---- the root by traversing the file system upwards starting from the current directory until
---- either a `pyproject.toml` or `setup.py` file is found.
+--- should be re-used. The example above uses |vim.fs.root()| to detect the root by traversing
+--- the file system upwards starting from the current directory until either a `pyproject.toml`
+--- or `setup.py` file is found.
--- - `workspace_folders` list of `{ uri:string, name: string }` tables specifying the project root
--- folders used by the language server. If `nil` the property is derived from `root_dir` for
--- convenience.