mirror of https://github.com/folke/neoconf.nvim
chore(build): auto-generate vimdoc, schemas and annotations
This commit is contained in:
parent
795ff56ad7
commit
f7ccc9434a
|
|
@ -22,7 +22,8 @@
|
|||
"^\\s?#\\s#+",
|
||||
"^##(?!#)",
|
||||
"^#(\\s?)%%",
|
||||
"^#-"
|
||||
"^#-",
|
||||
"^#+"
|
||||
],
|
||||
"description": "Cell delimiter regular expressions for Julia files.",
|
||||
"type": "array"
|
||||
|
|
@ -148,7 +149,7 @@
|
|||
},
|
||||
"julia.executablePath": {
|
||||
"default": "",
|
||||
"description": "Points to the julia executable.",
|
||||
"markdownDescription": "Points to the Julia executable. This can either be an absolute path, an executable on your PATH, or a juliaup channel (valid formats `julia +$channel`, `+$channel`).",
|
||||
"scope": "machine-overridable",
|
||||
"type": "string"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1108,6 +1108,11 @@
|
|||
"markdownDescription": "Show function parameter name inlay hints at the call site.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"rust-analyzer.inlayHints.parameterHints.missingArguments.enable": {
|
||||
"default": false,
|
||||
"markdownDescription": "Show parameter name inlay hints for missing arguments at the call site.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"rust-analyzer.inlayHints.rangeExclusiveHints.enable": {
|
||||
"default": false,
|
||||
"markdownDescription": "Show exclusive range inlay hints.",
|
||||
|
|
|
|||
|
|
@ -6958,7 +6958,7 @@
|
|||
-- Cell delimiter regular expressions for Julia files.
|
||||
--
|
||||
-- ```lua
|
||||
-- default = { "^\\s?#\\s#+", "^##(?!#)", "^#(\\s?)%%", "^#-" }
|
||||
-- default = { "^\\s?#\\s#+", "^##(?!#)", "^#(\\s?)%%", "^#-", "^#+" }
|
||||
-- ```
|
||||
---@field cellDelimiters any[]
|
||||
-- Sets the mode for completions.
|
||||
|
|
@ -6991,7 +6991,7 @@
|
|||
---@field enableTelemetry boolean
|
||||
-- Path to a julia environment. VS Code needs to be reloaded for changes to take effect. Explicitly supports substitution for the `${userHome}`, `${workspaceFolder}`, `${workspaceFolderBasename}`, `${workspaceFolder:<FOLDER_NAME>}`, `${pathSeparator}`, `${env:<ENVIRONMENT_VARIABLE>}`, `${config:<CONFIG_VARIABLE>} tokens.
|
||||
---@field environmentPath string
|
||||
-- Points to the julia executable.
|
||||
-- Points to the Julia executable. This can either be an absolute path, an executable on your PATH, or a juliaup channel (valid formats `julia +$channel`, `+$channel`).
|
||||
--
|
||||
-- ```lua
|
||||
-- default = ""
|
||||
|
|
@ -14557,6 +14557,10 @@
|
|||
-- Prefer using parameter names as the name for elided lifetime hints if possible.
|
||||
---@field useParameterNames boolean
|
||||
|
||||
---@class _.lspconfig.settings.rust_analyzer.MissingArguments
|
||||
-- Show parameter name inlay hints for missing arguments at the call site.
|
||||
---@field enable boolean
|
||||
|
||||
---@class _.lspconfig.settings.rust_analyzer.ParameterHints
|
||||
-- Show function parameter name inlay hints at the call site.
|
||||
--
|
||||
|
|
@ -14564,6 +14568,7 @@
|
|||
-- default = true
|
||||
-- ```
|
||||
---@field enable boolean
|
||||
---@field missingArguments _.lspconfig.settings.rust_analyzer.MissingArguments
|
||||
|
||||
---@class _.lspconfig.settings.rust_analyzer.RangeExclusiveHints
|
||||
-- Show exclusive range inlay hints.
|
||||
|
|
|
|||
Loading…
Reference in New Issue