aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorstrager <strager.nds@gmail.com>2023-05-23 17:46:01 -0700
committerGitHub <noreply@github.com>2023-05-24 08:46:01 +0800
commit570aae82f8c6bc15fb6e559ed7d5a3fd85374329 (patch)
tree0fa09eef7c88e9843f4d9149e21ce08da8e54b3d /CONTRIBUTING.md
parentdocs: update server_configurations.md (diff)
downloadnvim-lspconfig-570aae82f8c6bc15fb6e559ed7d5a3fd85374329.tar
nvim-lspconfig-570aae82f8c6bc15fb6e559ed7d5a3fd85374329.tar.gz
nvim-lspconfig-570aae82f8c6bc15fb6e559ed7d5a3fd85374329.tar.bz2
nvim-lspconfig-570aae82f8c6bc15fb6e559ed7d5a3fd85374329.tar.lz
nvim-lspconfig-570aae82f8c6bc15fb6e559ed7d5a3fd85374329.tar.xz
nvim-lspconfig-570aae82f8c6bc15fb6e559ed7d5a3fd85374329.tar.zst
nvim-lspconfig-570aae82f8c6bc15fb6e559ed7d5a3fd85374329.zip
docs: fix broken links to LSP specification (#2631)
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index a2b6c13c..50c88055 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -36,8 +36,8 @@ cmd = { 'typescript-language-server', '--stdio' }
Additionally, the following options are often added:
-* `init_options`: a table sent during initialization, corresponding to initializationOptions sent in [initializeParams](https://microsoft.github.io/language-server-protocol/specifications/specification-3-17/#initializeParams) as part of the first request sent from client to server during startup.
-* `settings`: a table sent during [`workspace/didChangeConfiguration`](https://microsoft.github.io/language-server-protocol/specifications/specification-3-17/#didChangeConfigurationParams) shortly after server initialization. This is an undocumented convention for most language servers. There is often some duplication with initOptions.
+* `init_options`: a table sent during initialization, corresponding to initializationOptions sent in [initializeParams](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#initializeParams) as part of the first request sent from client to server during startup.
+* `settings`: a table sent during [`workspace/didChangeConfiguration`](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#didChangeConfigurationParams) shortly after server initialization. This is an undocumented convention for most language servers. There is often some duplication with initOptions.
An example for adding a new language server is shown below for `pyright`, a python language server included in lspconfig: