Skip to content

Commit 59f9f3d

Browse files
authored
Turn off text edit lazy resolving (#3114)
Signed-off-by: Sheng Chen <[email protected]>
1 parent baf99f7 commit 59f9f3d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ The following settings are supported:
226226
* `java.refactoring.extract.interface.replace`: Specify whether to replace all the occurrences of the subtype with the new extracted interface. Defaults to `true`.
227227
* `java.import.maven.disableTestClasspathFlag` : Enable/disable test classpath segregation. When enabled, this permits the usage of test resources within a Maven project as dependencies within the compile scope of other projects. Defaults to `false`.
228228
* `java.configuration.maven.defaultMojoExecutionAction` : Specifies default mojo execution action when no associated metadata can be detected. Defaults to `ignore`.
229-
* `java.completion.lazyResolveTextEdit.enabled`: [Experimental] Enable/disable lazily resolving text edits for code completion. Defaults to `true`.
229+
* `java.completion.lazyResolveTextEdit.enabled`: [Experimental] Enable/disable lazily resolving text edits for code completion. Defaults to `false`.
230230

231231
New in 1.19.0
232232
* `java.edit.validateAllOpenBuffersOnChanges`: Specifies whether to recheck all open Java files for diagnostics when editing a Java file. Defaults to `false`.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@
619619
},
620620
"java.completion.lazyResolveTextEdit.enabled": {
621621
"type": "boolean",
622-
"default": true,
622+
"default": false,
623623
"description": "[Experimental] Enable/disable lazily resolving text edits for code completion.",
624624
"scope": "window"
625625
},

0 commit comments

Comments
 (0)