diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-05-22 08:26:01 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-05-22 08:26:01 +0000 |
| commit | 818330fd4498fbcd01d68d68c0eb6c1373d2ed3f (patch) | |
| tree | cc2d0555a06af2ac81daf2ad15f46046b6adce89 | |
| parent | fix(roslyn_ls): drop unnecessary code, recommend maintained plugin #4436 (diff) | |
| download | nvim-lspconfig-818330fd4498fbcd01d68d68c0eb6c1373d2ed3f.tar nvim-lspconfig-818330fd4498fbcd01d68d68c0eb6c1373d2ed3f.tar.gz nvim-lspconfig-818330fd4498fbcd01d68d68c0eb6c1373d2ed3f.tar.bz2 nvim-lspconfig-818330fd4498fbcd01d68d68c0eb6c1373d2ed3f.tar.lz nvim-lspconfig-818330fd4498fbcd01d68d68c0eb6c1373d2ed3f.tar.xz nvim-lspconfig-818330fd4498fbcd01d68d68c0eb6c1373d2ed3f.tar.zst nvim-lspconfig-818330fd4498fbcd01d68d68c0eb6c1373d2ed3f.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 13 | ||||
| -rw-r--r-- | doc/configs.txt | 13 |
2 files changed, 8 insertions, 18 deletions
diff --git a/doc/configs.md b/doc/configs.md index cbcb7161..5ffd4abf 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -10716,10 +10716,6 @@ Download and extract it (nuget's are zip files). cmd = { 'dotnet', '<my_folder>/Microsoft.CodeAnalysis.LanguageServer.dll', - '--logLevel', -- this property is required by the server - 'Information', - '--extensionLogDirectory', -- this property is required by the server - fs.joinpath(uv.os_tmpdir(), 'roslyn_ls/logs'), '--stdio', }, ``` @@ -10749,7 +10745,7 @@ Default config: ``` - `cmd` : ```lua - { "roslyn-language-server", "--logLevel", "Information", "--extensionLogDirectory", "/tmp/roslyn_ls/logs", "--stdio" } + { "roslyn-language-server", "--stdio" } ``` - `cmd_env` : ```lua @@ -10771,20 +10767,19 @@ Default config: ```lua { ["razor/provideDynamicFileInfo"] = <function 1>, - ["workspace/_roslyn_projectNeedsRestore"] = <function 2>, - ["workspace/projectInitializationComplete"] = <function 3> + ["workspace/projectInitializationComplete"] = <function 2> } ``` - `name` : ```lua "roslyn_ls" ``` -- `on_attach`: [../lsp/roslyn_ls.lua:165](../lsp/roslyn_ls.lua#L165) +- `on_attach`: [../lsp/roslyn_ls.lua:144](../lsp/roslyn_ls.lua#L144) - `on_init` : ```lua { <function 1> } ``` -- `root_dir`: [../lsp/roslyn_ls.lua:165](../lsp/roslyn_ls.lua#L165) +- `root_dir`: [../lsp/roslyn_ls.lua:144](../lsp/roslyn_ls.lua#L144) - `settings` : ```lua { diff --git a/doc/configs.txt b/doc/configs.txt index 4617a22f..aef0a1ec 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -7953,10 +7953,6 @@ Download and extract it (nuget's are zip files). cmd = { 'dotnet', '<my_folder>/Microsoft.CodeAnalysis.LanguageServer.dll', - '--logLevel', -- this property is required by the server - 'Information', - '--extensionLogDirectory', -- this property is required by the server - fs.joinpath(uv.os_tmpdir(), 'roslyn_ls/logs'), '--stdio', }, ``` @@ -7982,7 +7978,7 @@ Default config: } } - cmd: >lua - { "roslyn-language-server", "--logLevel", "Information", "--extensionLogDirectory", "/tmp/roslyn_ls/logs", "--stdio" } + { "roslyn-language-server", "--stdio" } - cmd_env: >lua {} - commands: >lua @@ -7996,15 +7992,14 @@ Default config: - handlers: >lua { ["razor/provideDynamicFileInfo"] = <function 1>, - ["workspace/_roslyn_projectNeedsRestore"] = <function 2>, - ["workspace/projectInitializationComplete"] = <function 3> + ["workspace/projectInitializationComplete"] = <function 2> } - name: >lua "roslyn_ls" -- on_attach (use "gF" to view): ../lsp/roslyn_ls.lua:165 +- on_attach (use "gF" to view): ../lsp/roslyn_ls.lua:144 - on_init: >lua { <function 1> } -- root_dir (use "gF" to view): ../lsp/roslyn_ls.lua:165 +- root_dir (use "gF" to view): ../lsp/roslyn_ls.lua:144 - settings: >lua { ["csharp|background_analysis"] = { |
