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 Jul 27, 2024
1 parent 08ebe38 commit fa73db3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions schemas/jdtls.json
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,15 @@
"scope": "window",
"type": "string"
},
"java.diagnostic.filter": {
"default": [],
"description": "Specifies a list of file patterns for which matching documents should not have their diagnostics reported (eg. '**/Foo.java').",
"items": {
"type": "string"
},
"scope": "window",
"type": "array"
},
"java.eclipse.downloadSources": {
"default": false,
"description": "Enable/disable download of Maven source artifacts for Eclipse projects.",
Expand Down
9 changes: 9 additions & 0 deletions types/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4998,6 +4998,14 @@
-- Preferred content provider (a 3rd party decompiler id, usually)
---@field preferred string

---@class _.lspconfig.settings.jdtls.Diagnostic
-- Specifies a list of file patterns for which matching documents should not have their diagnostics reported (eg. '**/Foo.java').
--
-- ```lua
-- default = {}
-- ```
---@field filter string[]

---@class _.lspconfig.settings.jdtls.Eclipse
-- Enable/disable download of Maven source artifacts for Eclipse projects.
---@field downloadSources boolean
Expand Down Expand Up @@ -5467,6 +5475,7 @@
---@field completion _.lspconfig.settings.jdtls.Completion
---@field configuration _.lspconfig.settings.jdtls.Configuration
---@field contentProvider _.lspconfig.settings.jdtls.ContentProvider
---@field diagnostic _.lspconfig.settings.jdtls.Diagnostic
---@field eclipse _.lspconfig.settings.jdtls.Eclipse
---@field edit _.lspconfig.settings.jdtls.Edit
---@field editor _.lspconfig.settings.jdtls.Editor
Expand Down

0 comments on commit fa73db3

Please sign in to comment.