mirror of https://github.com/folke/neoconf.nvim
chore(build): auto-generated build files
This commit is contained in:
parent
ba7c9da883
commit
43be064a4f
|
|
@ -266,6 +266,26 @@
|
|||
"scope": "window",
|
||||
"type": "string"
|
||||
},
|
||||
"ada.rangeFormattingFallback": {
|
||||
"default": null,
|
||||
"enum": [
|
||||
true,
|
||||
false,
|
||||
null
|
||||
],
|
||||
"enumItemLabels": [
|
||||
null,
|
||||
null,
|
||||
"Provided by .als.json (default: true)"
|
||||
],
|
||||
"markdownDescription": "Enable fallback indenter in case the file is not syntactically correct.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`.",
|
||||
"markdownEnumDescriptions": [
|
||||
"true",
|
||||
"false",
|
||||
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
|
||||
],
|
||||
"scope": "window"
|
||||
},
|
||||
"ada.relocateBuildTree": {
|
||||
"default": null,
|
||||
"markdownDescription": "The path to a directory used for out-of-tree builds. This feature is related to the [--relocate-build-tree GPRbuild command line switch](https://docs.adacore.com/gprbuild-docs/html/gprbuild_ug/building_with_gprbuild.html#switches).\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists.",
|
||||
|
|
|
|||
|
|
@ -801,6 +801,12 @@
|
|||
"scope": "window",
|
||||
"type": "array"
|
||||
},
|
||||
"java.inlayHints.parameterTypes.enabled": {
|
||||
"default": false,
|
||||
"markdownDescription": "Enable/disable inlay hints for (lambda) parameter types:\n```java\n\nList.of(1, 2, 3, 4).filter(/*Integer */ n -> n % 2 == 0).toList();\n \n```",
|
||||
"scope": "window",
|
||||
"type": "boolean"
|
||||
},
|
||||
"java.inlayHints.variableTypes.enabled": {
|
||||
"default": false,
|
||||
"markdownDescription": "Enable/disable inlay hints for implicit variable types:\n```java\n\nvar foo /* :Path */ = Path.of(\"foo\");\n \n```",
|
||||
|
|
|
|||
|
|
@ -95,6 +95,10 @@
|
|||
--
|
||||
-- If not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists.
|
||||
---@field projectFile string
|
||||
-- Enable fallback indenter in case the file is not syntactically correct.
|
||||
--
|
||||
-- If not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`.
|
||||
---@field rangeFormattingFallback true | false
|
||||
-- The path to a directory used for out-of-tree builds. This feature is related to the [--relocate-build-tree GPRbuild command line switch](https://docs.adacore.com/gprbuild-docs/html/gprbuild_ug/building_with_gprbuild.html#switches).
|
||||
--
|
||||
-- If not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists.
|
||||
|
|
@ -6188,6 +6192,15 @@
|
|||
-- ```
|
||||
---@field exclusions string[]
|
||||
|
||||
---@class _.lspconfig.settings.jdtls.ParameterTypes
|
||||
-- Enable/disable inlay hints for (lambda) parameter types:
|
||||
-- ```java
|
||||
--
|
||||
-- List.of(1, 2, 3, 4).filter(/*Integer */ n -> n % 2 == 0).toList();
|
||||
--
|
||||
-- ```
|
||||
---@field enabled boolean
|
||||
|
||||
---@class _.lspconfig.settings.jdtls.VariableTypes
|
||||
-- Enable/disable inlay hints for implicit variable types:
|
||||
-- ```java
|
||||
|
|
@ -6199,6 +6212,7 @@
|
|||
|
||||
---@class _.lspconfig.settings.jdtls.InlayHints
|
||||
---@field parameterNames _.lspconfig.settings.jdtls.ParameterNames
|
||||
---@field parameterTypes _.lspconfig.settings.jdtls.ParameterTypes
|
||||
---@field variableTypes _.lspconfig.settings.jdtls.VariableTypes
|
||||
|
||||
---@class _.lspconfig.settings.jdtls.AndroidSupport
|
||||
|
|
|
|||
Loading…
Reference in New Issue