Skip to content

Commit c3b2b6e

Browse files
authored
Add a new setting 'java.signatureHelp.description.enabled' (#2404)
* Add 'New' section in README Signed-off-by: sheche <[email protected]>
1 parent 0868943 commit c3b2b6e

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ The following settings are supported:
120120
* `java.referencesCodeLens.enabled` : Enable/disable the references code lenses.
121121
* `java.implementationsCodeLens.enabled` : Enable/disable the implementations code lenses.
122122
* `java.signatureHelp.enabled` : Enable/disable signature help support (triggered on `(`).
123+
* `java.signatureHelp.description.enabled` : Enable/disable to show the description in signature help. Defaults to `false`.
123124
* `java.contentProvider.preferred` : Preferred content provider (see 3rd party decompilers available in [vscode-java-decompiler](https://github.com/dgileadi/vscode-java-decompiler)).
124125
* `java.import.exclusions` : Exclude folders from import via glob patterns. Use `!` to negate patterns to allow subfolders imports. You have to include a parent directory. The order is important.
125126
* `java.import.gradle.enabled` : Enable/disable the Gradle importer.
@@ -201,6 +202,8 @@ The following settings are supported:
201202
* `java.import.generatesMetadataFilesAtProjectRoot` : Specify whether the project metadata files(.project, .classpath, .factorypath, .settings/) will be generated at the project root. Defaults to `false`.
202203
* `java.inlayHints.parameterNames.enabled`: Enable/disable inlay hints for parameter names. Supported values are: `none`(isable parameter name hints), `literals`(Enable parameter name hints only for literal arguments) and `all`(Enable parameter name hints for literal and non-literal arguments). Defaults to `literals`.
203204

205+
New in 1.6.0:
206+
* `java.signatureHelp.description.enabled`: Enable/disable to show the description in signature help. Defaults to `false`.
204207

205208
Semantic Highlighting
206209
===============

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,12 @@
328328
"description": "Enable/disable the signature help.",
329329
"scope": "window"
330330
},
331+
"java.signatureHelp.description.enabled": {
332+
"type": "boolean",
333+
"default": false,
334+
"description": "Enable/disable to show the description in signature help.",
335+
"scope": "window"
336+
},
331337
"java.implementationsCodeLens.enabled": {
332338
"type": "boolean",
333339
"default": false,

0 commit comments

Comments
 (0)