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

This commit is contained in:
github-actions[bot] 2025-11-20 01:31:23 +00:00
parent 39d1876fee
commit c0842110f6
2 changed files with 18 additions and 0 deletions

View File

@ -216,6 +216,12 @@
"markdownDescription": "Enable type hints for variable definitions:\n```julia\nfoo #=::Int64=# = 42\n```",
"type": "boolean"
},
"julia.juliaup.install.hint": {
"default": true,
"description": "Show Juliaup install recommendation.",
"scope": "machine-overridable",
"type": "boolean"
},
"julia.languageServerExecutablePath": {
"default": "",
"description": "Points to the julia executable used to launch the language server process. This overwrites julia.executablePath for the language server launch if present.",

View File

@ -6779,6 +6779,17 @@
---@field runtime _.lspconfig.settings.julials.Runtime
---@field static _.lspconfig.settings.julials.Static
---@class _.lspconfig.settings.julials.Install
-- Show Juliaup install recommendation.
--
-- ```lua
-- default = true
-- ```
---@field hint boolean
---@class _.lspconfig.settings.julials.Juliaup
---@field install _.lspconfig.settings.julials.Install
---@class _.lspconfig.settings.julials.Lint
-- This compares call signatures against all known methods for the called function. Calls with too many or too few arguments, or unknown keyword parameters are highlighted.
--
@ -6964,6 +6975,7 @@
-- Whether to automatically show the plot navigator when plotting.
---@field focusPlotNavigator boolean
---@field inlayHints _.lspconfig.settings.julials.InlayHints
---@field juliaup _.lspconfig.settings.julials.Juliaup
-- Points to the julia executable used to launch the language server process. This overwrites julia.executablePath for the language server launch if present.
--
-- ```lua