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 Oct 23, 2023
1 parent ae08076 commit 00dcf2b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion schemas/jdtls.json
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,11 @@
"node_modules",
"\\.git"
],
"description": "Excludes files and folders from being refreshed by the Java Language Server, which can improve the overall performance. For example, [\"node_modules\",\"\\.git\"] will exclude all files and folders named 'node_modules' or '.git'. Pattern expressions must be compatible with `java.util.regex.Pattern`. Defaults to [\"node_modules\",\"\\.git\"].",
"items": {
"pattern": "^(?!\\*).*",
"type": "string"
},
"markdownDescription": "Excludes files and folders from being refreshed by the Java Language Server, which can improve the overall performance. For example, [\"node_modules\",\"\\.git\"] will exclude all files and folders named `node_modules` or `.git`. Pattern expressions must be compatible with `java.util.regex.Pattern`. Defaults to [\"node_modules\",\"\\.git\"].",
"scope": "window",
"type": "array"
},
Expand Down
4 changes: 2 additions & 2 deletions types/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3638,12 +3638,12 @@
-- default = { "lib/**/*.jar" }
-- ```
---@field referencedLibraries any[]|table
-- Excludes files and folders from being refreshed by the Java Language Server, which can improve the overall performance. For example, ["node_modules","\.git"] will exclude all files and folders named 'node_modules' or '.git'. Pattern expressions must be compatible with `java.util.regex.Pattern`. Defaults to ["node_modules","\.git"].
-- Excludes files and folders from being refreshed by the Java Language Server, which can improve the overall performance. For example, ["node_modules","\.git"] will exclude all files and folders named `node_modules` or `.git`. Pattern expressions must be compatible with `java.util.regex.Pattern`. Defaults to ["node_modules","\.git"].
--
-- ```lua
-- default = { "node_modules", "\\.git" }
-- ```
---@field resourceFilters any[]
---@field resourceFilters string[]
-- Relative paths to the workspace where stores the source files. `Only` effective in the `WORKSPACE` scope. The setting will `NOT` affect Maven or Gradle project.
--
-- ```lua
Expand Down

0 comments on commit 00dcf2b

Please sign in to comment.