This repository was archived by the owner on Dec 15, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ const {
11
11
removeUnusedImportProvider
12
12
} = actionProviders
13
13
14
- const serverDownloadUrl = 'http://download.eclipse.org/jdtls/milestones/0.14 .0/jdt-language-server-0.14 .0-201802282111 .tar.gz'
15
- const serverDownloadSize = 35873467
16
- const serverLauncher = '/plugins/org.eclipse.equinox.launcher_1.5.0.v20180119-0753 .jar'
14
+ const serverDownloadUrl = 'http://download.eclipse.org/jdtls/milestones/0.39 .0/jdt-language-server-0.39 .0-201905150127 .tar.gz'
15
+ const serverDownloadSize = 39070941
16
+ const serverLauncher = '/plugins/org.eclipse.equinox.launcher_1.5.300.v20190213-1655 .jar'
17
17
const minJavaRuntime = 1.8
18
18
const bytesToMegabytes = 1024 * 1024
19
19
@@ -205,6 +205,11 @@ class JavaLanguageClient extends AutoLanguageClient {
205
205
params . initializationOptions = { } ;
206
206
}
207
207
params . initializationOptions . bundles = this . collectJavaExtensions ( ) ;
208
+ params . initializationOptions . settings = {
209
+ java : {
210
+ "java.signatureHelp.enabled" : true
211
+ }
212
+ }
208
213
return params ;
209
214
}
210
215
Original file line number Diff line number Diff line change 87
87
"0.1.0" : " consumeDatatip"
88
88
}
89
89
},
90
+ "signature-help" : {
91
+ "versions" : {
92
+ "0.1.0" : " consumeSignatureHelp"
93
+ }
94
+ },
90
95
"status-bar" : {
91
96
"versions" : {
92
97
"^1.0.0" : " consumeStatusBar"
You can’t perform that action at this time.
0 commit comments