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 Nov 21, 2024
1 parent 6cbef40 commit c927f0d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 26 deletions.
6 changes: 6 additions & 0 deletions schemas/clangd.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@
"clangd.trace": {
"description": "Names a file that clangd should log a performance trace to, in chrome trace-viewer JSON format.",
"type": "string"
},
"clangd.useScriptAsExecutable": {
"default": "false",
"description": "Allows the path to be a script e.g.: clangd.sh.",
"scope": "machine-overridable",
"type": "boolean"
}
}
}
2 changes: 1 addition & 1 deletion schemas/jdtls.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"tryWithResource",
"renameFileToType",
"organizeImports",
"removeUnusedLambdaParameters"
"renameUnusedLocalVariables"
],
"type": "string"
},
Expand Down
16 changes: 0 additions & 16 deletions schemas/omnisharp.json
Original file line number Diff line number Diff line change
Expand Up @@ -993,22 +993,6 @@
"description": "%configuration.omnisharp.razor.plugin.path%",
"scope": "machine",
"type": "string"
},
"razor.server.trace": {
"default": "Information",
"description": "%configuration.razor.server.trace%",
"enum": [
"Trace",
"Debug",
"Information",
"Warning",
"Error",
"Critical",
"None"
],
"order": 90,
"scope": "window",
"type": "string"
}
}
}
15 changes: 6 additions & 9 deletions types/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1027,6 +1027,12 @@
---@field serverCompletionRanking boolean
-- Names a file that clangd should log a performance trace to, in chrome trace-viewer JSON format.
---@field trace string
-- Allows the path to be a script e.g.: clangd.sh.
--
-- ```lua
-- default = "false"
-- ```
---@field useScriptAsExecutable boolean

---@class lspconfig.settings.clangd
---@field clangd _.lspconfig.settings.clangd.Clangd
Expand Down Expand Up @@ -10431,22 +10437,13 @@
-- %configuration.omnisharp.razor.plugin.path%
---@field path string

---@class _.lspconfig.settings.omnisharp.Server
-- %configuration.razor.server.trace%
--
-- ```lua
-- default = "Information"
-- ```
---@field trace "Trace" | "Debug" | "Information" | "Warning" | "Error" | "Critical" | "None"

---@class _.lspconfig.settings.omnisharp.Razor
---@field completion _.lspconfig.settings.omnisharp.Completion
-- %configuration.omnisharp.razor.devmode%
---@field devmode boolean
---@field format _.lspconfig.settings.omnisharp.Format
---@field languageServer _.lspconfig.settings.omnisharp.LanguageServer
---@field plugin _.lspconfig.settings.omnisharp.Plugin
---@field server _.lspconfig.settings.omnisharp.Server

---@class lspconfig.settings.omnisharp
---@field csharp _.lspconfig.settings.omnisharp.Csharp
Expand Down

0 comments on commit c927f0d

Please sign in to comment.