diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-11-22 07:18:44 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-11-22 07:18:44 +0000 |
| commit | a2a277114dbb93e98f04b5087a9b832918b7da15 (patch) | |
| tree | 782b3efd6c624960f1bfe2329a551f5e296d54eb | |
| parent | feat(rust_analyzer): enable codelens (#4210) (diff) | |
| download | nvim-lspconfig-a2a277114dbb93e98f04b5087a9b832918b7da15.tar nvim-lspconfig-a2a277114dbb93e98f04b5087a9b832918b7da15.tar.gz nvim-lspconfig-a2a277114dbb93e98f04b5087a9b832918b7da15.tar.bz2 nvim-lspconfig-a2a277114dbb93e98f04b5087a9b832918b7da15.tar.lz nvim-lspconfig-a2a277114dbb93e98f04b5087a9b832918b7da15.tar.xz nvim-lspconfig-a2a277114dbb93e98f04b5087a9b832918b7da15.tar.zst nvim-lspconfig-a2a277114dbb93e98f04b5087a9b832918b7da15.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 48 | ||||
| -rw-r--r-- | doc/configs.txt | 46 |
2 files changed, 82 insertions, 12 deletions
diff --git a/doc/configs.md b/doc/configs.md index 6b6de76b..ae041609 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -2403,11 +2403,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" } } ``` @@ -4846,20 +4846,20 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" }, editorPluginInfo = { name = "Neovim LSP", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" }, extension = { name = "Neovim LSP Client", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" }, ide = { name = "Neovim", vendor = "Neovim", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" } } ``` @@ -10324,6 +10324,42 @@ Default config: ``` - `on_attach`: [../lsp/rust_analyzer.lua:56](../lsp/rust_analyzer.lua#L56) - `root_dir`: [../lsp/rust_analyzer.lua:56](../lsp/rust_analyzer.lua#L56) +- `settings` : + ```lua + { + ["rust-analyzer"] = { + lens = { + debug = { + enable = true + }, + enable = true, + implementations = { + enable = true + }, + references = { + adt = { + enable = true + }, + enumVariant = { + enable = true + }, + method = { + enable = true + }, + trait = { + enable = true + } + }, + run = { + enable = true + }, + updateTest = { + enable = true + } + } + } + } + ``` --- diff --git a/doc/configs.txt b/doc/configs.txt index 0dcd25e6..614d632a 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -1572,11 +1572,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" } } - on_attach (use "gF" to view): ../lsp/copilot.lua:106 @@ -3443,20 +3443,20 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" }, editorPluginInfo = { name = "Neovim LSP", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" }, extension = { name = "Neovim LSP Client", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" }, ide = { name = "Neovim", vendor = "Neovim", - version = "0.12.0-dev+g7be031f397" + version = "0.12.0-dev+g1c12073db6" } } - on_attach (use "gF" to view): ../lsp/gitlab_duo.lua:317 @@ -7637,6 +7637,40 @@ Default config: { "rust" } - on_attach (use "gF" to view): ../lsp/rust_analyzer.lua:56 - root_dir (use "gF" to view): ../lsp/rust_analyzer.lua:56 +- settings: >lua + { + ["rust-analyzer"] = { + lens = { + debug = { + enable = true + }, + enable = true, + implementations = { + enable = true + }, + references = { + adt = { + enable = true + }, + enumVariant = { + enable = true + }, + method = { + enable = true + }, + trait = { + enable = true + } + }, + run = { + enable = true + }, + updateTest = { + enable = true + } + } + } + } < ------------------------------------------------------------------------------ |
