You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,14 +110,15 @@ The following settings are supported:
110
110
*`java.codeGeneration.toString.skipNullValues`: Skip null values when generating the toString method. Defaults to `false`.
111
111
*`java.codeGeneration.toString.listArrayContents`: List contents of arrays instead of using native toString(). Defaults to `true`.
112
112
*`java.codeGeneration.toString.limitElements`: Limit number of items in arrays/collections/maps to list, if 0 then list all. Defaults to `0`.
113
-
114
-
*New in 0.47.0*
115
-
116
113
*`java.import.gradle.arguments`: Arguments to pass to Gradle.
117
114
*`java.import.gradle.jvmArguments`: JVM arguments to pass to Gradle.
118
115
*`java.import.gradle.home`: setting for GRADLE_HOME.
119
116
*`java.selectionRange.enabled`: Enable/disable Smart Selection support for Java. Disabling this option will not affect the VS Code built-in word-based and bracket-based smart selection.
120
117
118
+
*New in 0.49.0*
119
+
120
+
*`java.completion.filteredTypes`: Defines the type filters. All types whose fully qualified name matches the selected filter strings will be ignored in content assist or quick fix proposals and when organizing imports. For example 'java.awt.*' will hide all types from the awt packages.
121
+
121
122
Troubleshooting
122
123
===============
123
124
1. Check the status of the language tools on the lower right corner (marked with A on image below).
Copy file name to clipboardExpand all lines: package.json
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -263,6 +263,15 @@
263
263
],
264
264
"scope": "window"
265
265
},
266
+
"java.completion.filteredTypes": {
267
+
"type": "array",
268
+
"description": "Defines the type filters. All types whose fully qualified name matches the selected filter strings will be ignored in content assist or quick fix proposals and when organizing imports. For example 'java.awt.*' will hide all types from the awt packages.",
269
+
"default": [
270
+
"java.awt.*",
271
+
"com.sun.*"
272
+
],
273
+
"scope": "window"
274
+
},
266
275
"java.completion.importOrder": {
267
276
"type": "array",
268
277
"description": "Defines the sorting order of import statements. A package or type name prefix (e.g. 'org.eclipse') is a valid entry. An import is always added to the most specific group.",
0 commit comments