aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/configs.md13
-rw-r--r--doc/configs.txt13
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"] = {