Skip to content

Commit 1239f2d

Browse files
committed
Add 'java.completion.enabled' preference
Signed-off-by: Fred Bricon <fbricon@gmail.com>
1 parent 6c97673 commit 1239f2d

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,11 @@ The following settings are supported:
8787
* `java.format.settings.profile` : Optional formatter profile name from the Eclipse formatter settings.
8888
* `java.format.comments.enabled` : Includes the comments during code formatting.
8989
* `java.format.onType.enabled` : Enable/disable on-type formatting (triggered on `;`, `}` or `<return>`).
90-
91-
*New in 0.28.0:*
9290
* `java.completion.guessMethodArguments` : When set to true, method arguments are guessed when a method is selected from as list of code assist proposals.
9391

92+
*New in 0.31.0:*
93+
* `java.completion.enabled` : Enable/disable code completion support.
94+
9495

9596
Troubleshooting
9697
===============
@@ -110,7 +111,7 @@ This is an open source project open to anyone. Contributions are extremely welco
110111

111112
For information on getting started, refer to the [CONTRIBUTING instructions](CONTRIBUTING.md).
112113

113-
Continuous Integration builds can be installed from http://download.jboss.org/jbosstools/jdt.ls/staging/. Download the most recent `java-<version>.vsix` file and install it by following the instructions [here](https://code.visualstudio.com/docs/editor/extension-gallery#_install-from-a-vsix).
114+
Continuous Integration builds can be installed from http://download.jboss.org/jbosstools/jdt.ls/staging/. Download the most recent `java-<version>.vsix` file and install it by following the instructions [here](https://code.visualstudio.com/docs/editor/extension-gallery#_install-from-a-vsix).
114115
Stable releases are archived under http://download.jboss.org/jbosstools/static/jdt.ls/stable/.
115116

116117
Also, you can contribute your own VSCode extension to enhance the existing features by following the instructions [here](https://github.com/redhat-developer/vscode-java/wiki/Contribute-a-Java-Extension).

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,12 @@
184184
"description": "Enable/disable the 'auto build'",
185185
"scope": "window"
186186
},
187+
"java.completion.enabled": {
188+
"type": "boolean",
189+
"default": true,
190+
"description": "Enable/disable code completion support",
191+
"scope": "window"
192+
},
187193
"java.completion.overwrite": {
188194
"type": "boolean",
189195
"default": true,

0 commit comments

Comments
 (0)