chore(build): auto-generate vimdoc, schemas and annotations

This commit is contained in:
github-actions[bot] 2025-11-01 01:31:16 +00:00
parent d2400cd4ba
commit 16507844fe
2 changed files with 16 additions and 0 deletions

View File

@ -1321,6 +1321,14 @@
"string" "string"
] ]
}, },
"rust-analyzer.profiling.memoryProfile": {
"default": null,
"markdownDescription": "The path where to save memory profiling output.\n\n**Note:** Memory profiling is not enabled by default in rust-analyzer builds, you need to build\nfrom source for it.",
"type": [
"null",
"string"
]
},
"rust-analyzer.references.excludeImports": { "rust-analyzer.references.excludeImports": {
"default": false, "default": false,
"markdownDescription": "Exclude imports from find-all-references.", "markdownDescription": "Exclude imports from find-all-references.",

View File

@ -14660,6 +14660,13 @@
-- Internal config, path to proc-macro server executable. -- Internal config, path to proc-macro server executable.
---@field server string ---@field server string
---@class _.lspconfig.settings.rust_analyzer.Profiling
-- The path where to save memory profiling output.
--
-- **Note:** Memory profiling is not enabled by default in rust-analyzer builds, you need to build
-- from source for it.
---@field memoryProfile string
---@class _.lspconfig.settings.rust_analyzer.References ---@class _.lspconfig.settings.rust_analyzer.References
-- Exclude imports from find-all-references. -- Exclude imports from find-all-references.
---@field excludeImports boolean ---@field excludeImports boolean
@ -15108,6 +15115,7 @@
-- automatically. -- automatically.
---@field numThreads any|number|"physical" | "logical" ---@field numThreads any|number|"physical" | "logical"
---@field procMacro _.lspconfig.settings.rust_analyzer.ProcMacro ---@field procMacro _.lspconfig.settings.rust_analyzer.ProcMacro
---@field profiling _.lspconfig.settings.rust_analyzer.Profiling
---@field references _.lspconfig.settings.rust_analyzer.References ---@field references _.lspconfig.settings.rust_analyzer.References
-- Restart the server automatically when settings that require a restart are changed. -- Restart the server automatically when settings that require a restart are changed.
---@field restartServerOnConfigChange boolean ---@field restartServerOnConfigChange boolean