diff options
| author | github-actions <github-actions@github.com> | 2023-06-12 13:15:29 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2023-06-12 13:15:29 +0000 |
| commit | fefba589c56a5568a089299e36a4c8242502faaa (patch) | |
| tree | 91ac4568d0b018c36b5a4d1ba7c95bef7e2e9969 | |
| parent | fix: lsprestart only restart client which have attached buffer (#2669) (diff) | |
| download | nvim-lspconfig-fefba589c56a5568a089299e36a4c8242502faaa.tar nvim-lspconfig-fefba589c56a5568a089299e36a4c8242502faaa.tar.gz nvim-lspconfig-fefba589c56a5568a089299e36a4c8242502faaa.tar.bz2 nvim-lspconfig-fefba589c56a5568a089299e36a4c8242502faaa.tar.lz nvim-lspconfig-fefba589c56a5568a089299e36a4c8242502faaa.tar.xz nvim-lspconfig-fefba589c56a5568a089299e36a4c8242502faaa.tar.zst nvim-lspconfig-fefba589c56a5568a089299e36a4c8242502faaa.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 18 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 287270d0..a0d25487 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -654,6 +654,12 @@ require'lspconfig'.arduino_language_server.setup{} implementation = { linkSupport = true }, + inlayHint = { + dynamicRegistration = false, + resolveSupport = { + properties = {} + } + }, publishDiagnostics = { relatedInformation = true, tagSupport = { @@ -709,6 +715,9 @@ require'lspconfig'.arduino_language_server.setup{} dynamicRegistration = true, relativePatternSupport = true }, + inlayHint = { + refreshSupport = true + }, semanticTokens = vim.NIL, symbol = { dynamicRegistration = false, @@ -7714,6 +7723,12 @@ require'lspconfig'.rust_analyzer.setup{} implementation = { linkSupport = true }, + inlayHint = { + dynamicRegistration = false, + resolveSupport = { + properties = {} + } + }, publishDiagnostics = { relatedInformation = true, tagSupport = { @@ -7784,6 +7799,9 @@ require'lspconfig'.rust_analyzer.setup{} dynamicRegistration = true, relativePatternSupport = true }, + inlayHint = { + refreshSupport = true + }, semanticTokens = { refreshSupport = true }, diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 287270d0..a0d25487 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -654,6 +654,12 @@ require'lspconfig'.arduino_language_server.setup{} implementation = { linkSupport = true }, + inlayHint = { + dynamicRegistration = false, + resolveSupport = { + properties = {} + } + }, publishDiagnostics = { relatedInformation = true, tagSupport = { @@ -709,6 +715,9 @@ require'lspconfig'.arduino_language_server.setup{} dynamicRegistration = true, relativePatternSupport = true }, + inlayHint = { + refreshSupport = true + }, semanticTokens = vim.NIL, symbol = { dynamicRegistration = false, @@ -7714,6 +7723,12 @@ require'lspconfig'.rust_analyzer.setup{} implementation = { linkSupport = true }, + inlayHint = { + dynamicRegistration = false, + resolveSupport = { + properties = {} + } + }, publishDiagnostics = { relatedInformation = true, tagSupport = { @@ -7784,6 +7799,9 @@ require'lspconfig'.rust_analyzer.setup{} dynamicRegistration = true, relativePatternSupport = true }, + inlayHint = { + refreshSupport = true + }, semanticTokens = { refreshSupport = true }, |
