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 Sep 15, 2023
1 parent 7fd8110 commit 06afabe
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
14 changes: 14 additions & 0 deletions schemas/denols.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,20 @@
"scope": "window",
"type": "string"
},
"deno.disablePaths": {
"default": [],
"examples": [
[
"./worker"
]
],
"items": {
"type": "string"
},
"markdownDescription": "Disables the Deno Language Server for specific paths. This will leave the built in TypeScript/JavaScript language server enabled for those paths. Takes priority over `deno.enablePaths`.\n\n**Not recommended to be enabled in user settings.**",
"scope": "resource",
"type": "array"
},
"deno.documentPreloadLimit": {
"default": 1000,
"examples": [
Expand Down
8 changes: 8 additions & 0 deletions types/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,14 @@
-- default = <userdata 1>
-- ```
---@field config string
-- Disables the Deno Language Server for specific paths. This will leave the built in TypeScript/JavaScript language server enabled for those paths. Takes priority over `deno.enablePaths`.
--
-- **Not recommended to be enabled in user settings.**
--
-- ```lua
-- default = {}
-- ```
---@field disablePaths string[]
-- Maximum number of file system entries to traverse when finding scripts to preload into TypeScript on startup. Set this to 0 to disable document preloading.
--
-- ```lua
Expand Down

0 comments on commit 06afabe

Please sign in to comment.