Skip to content

Commit 5c42f13

Browse files
committed
feat: add setting to show generated code in document symbols
Signed-off-by: Fred Bricon <fbricon@gmail.com>
1 parent b1f4e81 commit 5c42f13

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ New in 1.53.0
267267
* `java.updateImportsOnPaste.enabled` : Enable/disable auto organize imports when pasting code. Defaults to `true`.
268268
* `java.jdt.ls.kotlinSupport.enabled`: [Experimental] Specify whether to enable `org.jetbrains.kotlin.jvm` plugin in Gradle projects. Defaults to `true`.
269269
* `java.jdt.ls.groovySupport.enabled`: [Experimental] Specify whether to enable `groovy` plugin in Gradle projects. Defaults to `true`.
270+
* `java.symbols.includeGeneratedCode` : Include generated code (e.g. Lombok getters, setters, constructors) in document outline/symbols. Defaults to `false`.
270271

271272
Semantic Highlighting
272273
===============

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1521,6 +1521,13 @@
15211521
"scope": "window",
15221522
"order": 60
15231523
},
1524+
"java.symbols.includeGeneratedCode": {
1525+
"type": "boolean",
1526+
"markdownDescription": "Include generated code (e.g. Lombok getters, setters, constructors) in document outline/symbols.",
1527+
"default": false,
1528+
"scope": "window",
1529+
"order": 65
1530+
},
15241531
"java.typeHierarchy.lazyLoad": {
15251532
"type": "boolean",
15261533
"default": false,

0 commit comments

Comments
 (0)