mirror of https://github.com/folke/neoconf.nvim
chore(build): auto-generate vimdoc, schemas and annotations
This commit is contained in:
parent
39d1876fee
commit
c0842110f6
|
|
@ -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.",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue