Skip to content

Commit 1cb9550

Browse files
committed
Update changelog and readme for #1084
Signed-off-by: Fred Bricon <[email protected]>
1 parent ac461a0 commit 1cb9550

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## 0.51.0 (October 16th, 2019)
44
* enhancement - [experimental] automatically trigger auto-import on paste. Can be disabled with `java.actionsOnPaste.organizeImports`. See [#1075](https://github.com/redhat-developer/vscode-java/issues/1075) and [#1098](https://github.com/redhat-developer/vscode-java/issues/1098).
5+
* enhancement - allow negative patterns in `java.import.exclusions` preference, to allow folder inclusions. See [#1084](https://github.com/redhat-developer/vscode-java/issues/1084).
56
* enhancement - made code snippets context sensitive. See [JLS#977](https://github.com/eclipse/eclipse.jdt.ls/issues/977).
67
* enhancement - improve snippet documentation rendering. See [JLS#1205](https://github.com/eclipse/eclipse.jdt.ls/issues/1205).
78
* bug fix - fixed preview features enabled at an invalid source release level 12, preview can be enabled only at source level 13. See [#1086](https://github.com/redhat-developer/vscode-java/issues/1086).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The following settings are supported:
8282
* `java.implementationsCodeLens.enabled` : Enable/disable the implementations code lenses.
8383
* `java.signatureHelp.enabled` : Enable/disable signature help support (triggered on `(`).
8484
* `java.contentProvider.preferred` : Preferred content provider (see 3rd party decompilers available in [vscode-java-decompiler](https://github.com/dgileadi/vscode-java-decompiler)).
85-
* `java.import.exclusions` : Exclude folders from import via glob patterns.
85+
* `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.
8686
* `java.import.gradle.enabled` : Enable/disable the Gradle importer.
8787
* `java.import.gradle.home`: setting for GRADLE_HOME.
8888
* `java.import.gradle.arguments`: Arguments to pass to Gradle.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
},
202202
"java.import.exclusions": {
203203
"type": "array",
204-
"description": "Configure glob patterns for excluding folders",
204+
"description": "Configure glob patterns for excluding folders. Use `!` to negate patterns to allow subfolders imports. You have to include a parent directory. The order is important.",
205205
"default": [
206206
"**/node_modules/**",
207207
"**/.metadata/**",

0 commit comments

Comments
 (0)