diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-03-27 11:36:38 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-03-27 11:36:38 +0000 |
| commit | b8c4df55051eebfed9a8b5e7253a5c103efd992f (patch) | |
| tree | 43e46c4f89073074f6b8af96790c7bbcd90d11db | |
| parent | fix(ci): retry generator jobs #4359 (diff) | |
| download | nvim-lspconfig-b8c4df55051eebfed9a8b5e7253a5c103efd992f.tar nvim-lspconfig-b8c4df55051eebfed9a8b5e7253a5c103efd992f.tar.gz nvim-lspconfig-b8c4df55051eebfed9a8b5e7253a5c103efd992f.tar.bz2 nvim-lspconfig-b8c4df55051eebfed9a8b5e7253a5c103efd992f.tar.lz nvim-lspconfig-b8c4df55051eebfed9a8b5e7253a5c103efd992f.tar.xz nvim-lspconfig-b8c4df55051eebfed9a8b5e7253a5c103efd992f.tar.zst nvim-lspconfig-b8c4df55051eebfed9a8b5e7253a5c103efd992f.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 22 | ||||
| -rw-r--r-- | doc/configs.txt | 22 |
2 files changed, 24 insertions, 20 deletions
diff --git a/doc/configs.md b/doc/configs.md index 25e2bc71..d8822ef0 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -2481,11 +2481,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+gc9e961994b" + version = "0.12.0-dev+g925e9e8722" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+gc9e961994b" + version = "0.12.0-dev+g925e9e8722" } } ``` @@ -4973,20 +4973,20 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+gc9e961994b" + version = "0.12.0-dev+g925e9e8722" }, editorPluginInfo = { name = "Neovim LSP", - version = "0.12.0-dev+gc9e961994b" + version = "0.12.0-dev+g925e9e8722" }, extension = { name = "Neovim LSP Client", - version = "0.12.0-dev+gc9e961994b" + version = "0.12.0-dev+g925e9e8722" }, ide = { name = "Neovim", vendor = "Neovim", - version = "0.12.0-dev+gc9e961994b" + version = "0.12.0-dev+g925e9e8722" } } ``` @@ -10440,6 +10440,7 @@ vim.lsp.enable('roslyn_ls') Commands: - roslyn.client.completionComplexEdit +- roslyn.client.fixAllCodeAction - roslyn.client.nestedCodeAction Default config: @@ -10465,7 +10466,8 @@ Default config: ```lua { ["roslyn.client.completionComplexEdit"] = <function 1>, - ["roslyn.client.nestedCodeAction"] = <function 2> + ["roslyn.client.fixAllCodeAction"] = <function 2>, + ["roslyn.client.nestedCodeAction"] = <function 3> } ``` - `filetypes` : @@ -10484,12 +10486,12 @@ Default config: ```lua "roslyn_ls" ``` -- `on_attach`: [../lsp/roslyn_ls.lua:112](../lsp/roslyn_ls.lua#L112) +- `on_attach`: [../lsp/roslyn_ls.lua:165](../lsp/roslyn_ls.lua#L165) - `on_init` : ```lua { <function 1> } ``` -- `root_dir`: [../lsp/roslyn_ls.lua:112](../lsp/roslyn_ls.lua#L112) +- `root_dir`: [../lsp/roslyn_ls.lua:165](../lsp/roslyn_ls.lua#L165) - `settings` : ```lua { @@ -11377,7 +11379,7 @@ Default config: activateSnykIac = "true", activateSnykOpenSource = "true", integrationName = "Neovim", - integrationVersion = "0.12.0-dev+gc9e961994b", + integrationVersion = "0.12.0-dev+g925e9e8722", token = vim.NIL, trustedFolders = {} } diff --git a/doc/configs.txt b/doc/configs.txt index b9bc0609..4b2e1ae6 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -1626,11 +1626,11 @@ Default config: { editorInfo = { name = "Neovim", |
