Skip to content

Commit 9cc9425

Browse files
chore(build): auto-generate vimdoc, schemas and annotations
1 parent a1b6400 commit 9cc9425

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

schemas/omnisharp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@
475475
"dotnet.preferCSharpExtension": {
476476
"default": false,
477477
"description": "%configuration.dotnet.preferCSharpExtension%",
478-
"scope": "resource",
478+
"scope": "window",
479479
"type": "boolean"
480480
},
481481
"dotnet.projects.binaryLogPath": {

schemas/rust_analyzer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -684,6 +684,11 @@
684684
"markdownDescription": "Whether to show keyword hover popups. Only applies when\n`#rust-analyzer.hover.documentation.enable#` is set.",
685685
"type": "boolean"
686686
},
687+
"rust-analyzer.hover.dropGlue.enable": {
688+
"default": true,
689+
"markdownDescription": "Whether to show drop glue information on hover.",
690+
"type": "boolean"
691+
},
687692
"rust-analyzer.hover.links.enable": {
688693
"default": true,
689694
"markdownDescription": "Use markdown syntax for links on hover.",

schemas/tinymist.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"type": "boolean"
4444
},
4545
"tinymist.configureDefaultWordSeparator": {
46-
"default": "enable",
46+
"default": "disable",
4747
"description": "Whether to configure default word separators on startup",
4848
"enum": [
4949
"enable",

types/lsp.lua

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13735,6 +13735,14 @@
1373513735
---@field enable boolean
1373613736
---@field keywords _.lspconfig.settings.rust_analyzer.Keywords
1373713737

13738+
---@class _.lspconfig.settings.rust_analyzer.DropGlue
13739+
-- Whether to show drop glue information on hover.
13740+
--
13741+
-- ```lua
13742+
-- default = true
13743+
-- ```
13744+
---@field enable boolean
13745+
1373813746
---@class _.lspconfig.settings.rust_analyzer.Links
1373913747
-- Use markdown syntax for links on hover.
1374013748
--
@@ -13790,6 +13798,7 @@
1379013798
---@class _.lspconfig.settings.rust_analyzer.Hover
1379113799
---@field actions _.lspconfig.settings.rust_analyzer.Actions
1379213800
---@field documentation _.lspconfig.settings.rust_analyzer.Documentation
13801+
---@field dropGlue _.lspconfig.settings.rust_analyzer.DropGlue
1379313802
---@field links _.lspconfig.settings.rust_analyzer.Links
1379413803
-- Whether to show what types are used as generic arguments in calls etc. on hover, and what is their max length to show such types, beyond it they will be shown with ellipsis.
1379513804
--
@@ -16274,7 +16283,7 @@
1627416283
-- Whether to configure default word separators on startup
1627516284
--
1627616285
-- ```lua
16277-
-- default = "enable"
16286+
-- default = "disable"
1627816287
-- ```
1627916288
---@field configureDefaultWordSeparator "enable" | "disable"
1628016289
-- Whether to handle paste of resources into the editing typst document. Note: restarting the editor is required to change this setting.

0 commit comments

Comments
 (0)