Skip to content

Commit

Permalink
chore(build): auto-generate vimdoc, schemas and annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 6, 2025
1 parent 0406899 commit c215518
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 64 deletions.
41 changes: 0 additions & 41 deletions schemas/volar.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,34 +121,6 @@
"markdownDescription": "Show inlay hints for v-bind shorthand:\n\n```html\n<Comp :foo />\n <!-- ^ =\"foo\" -->\n```",
"type": "boolean"
},
"vue.server.compatibleExtensions": {
"default": [],
"description": "Set compatible extensions to skip automatic detection of Hybrid Mode.",
"items": {
"type": "string"
},
"type": "array"
},
"vue.server.hybridMode": {
"default": "auto",
"description": "Vue language server only handles CSS and HTML language support, and tsserver takes over TS language support via TS plugin.",
"enum": [
"auto",
"typeScriptPluginOnly",
true,
false
],
"enumDescriptions": [
"Automatically detect and enable TypeScript Plugin/Hybrid Mode in a safe environment.",
"Only enable Vue TypeScript Plugin but disable Hybrid Mode.",
"Enable TypeScript Plugin/Hybrid Mode.",
"Disable TypeScript Plugin/Hybrid Mode."
],
"type": [
"boolean",
"string"
]
},
"vue.server.includeLanguages": {
"default": [
"vue"
Expand All @@ -158,14 +130,6 @@
},
"type": "array"
},
"vue.server.maxOldSpaceSize": {
"default": null,
"description": "Set --max-old-space-size option on server process. If you have problem on frequently \"Request textDocument/** failed.\" error, try setting higher memory(MB) on it.",
"type": [
"number",
"null"
]
},
"vue.splitEditors.icon": {
"default": false,
"description": "Show split editor icon in title area of editor.",
Expand Down Expand Up @@ -202,11 +166,6 @@
],
"scope": "window",
"type": "string"
},
"vue.updateImportsOnFileMove.enabled": {
"default": true,
"description": "Enabled update imports on file move.",
"type": "boolean"
}
}
}
23 changes: 0 additions & 23 deletions types/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17546,24 +17546,10 @@
---@field vBindShorthand boolean

---@class _.lspconfig.settings.volar.Server
-- Set compatible extensions to skip automatic detection of Hybrid Mode.
--
-- ```lua
-- default = {}
-- ```
---@field compatibleExtensions string[]
-- Vue language server only handles CSS and HTML language support, and tsserver takes over TS language support via TS plugin.
--
-- ```lua
-- default = "auto"
-- ```
---@field hybridMode "auto" | "typeScriptPluginOnly" | true | false
-- ```lua
-- default = { "vue" }
-- ```
---@field includeLanguages string[]
-- Set --max-old-space-size option on server process. If you have problem on frequently "Request textDocument/** failed." error, try setting higher memory(MB) on it.
---@field maxOldSpaceSize number

---@class _.lspconfig.settings.volar.Layout
-- ```lua
Expand All @@ -17588,14 +17574,6 @@
-- ```
---@field server "off" | "messages" | "verbose"

---@class _.lspconfig.settings.volar.UpdateImportsOnFileMove
-- Enabled update imports on file move.
--
-- ```lua
-- default = true
-- ```
---@field enabled boolean

---@class _.lspconfig.settings.volar.Vue
---@field autoInsert _.lspconfig.settings.volar.AutoInsert
---@field codeActions _.lspconfig.settings.volar.CodeActions
Expand All @@ -17607,7 +17585,6 @@
---@field server _.lspconfig.settings.volar.Server
---@field splitEditors _.lspconfig.settings.volar.SplitEditors
---@field trace _.lspconfig.settings.volar.Trace
---@field updateImportsOnFileMove _.lspconfig.settings.volar.UpdateImportsOnFileMove

---@class lspconfig.settings.volar
---@field vue _.lspconfig.settings.volar.Vue
Expand Down

0 comments on commit c215518

Please sign in to comment.