We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8491ac commit c069eb8Copy full SHA for c069eb8
src/extension.ts
@@ -172,7 +172,11 @@ export function activate(context: ExtensionContext): Promise<ExtensionAPI> {
172
middleware: {
173
workspace: {
174
didChangeConfiguration: () => {
175
- languageClient.sendNotification(DidChangeConfigurationNotification.type, { settings: getJavaConfig(requirements.java_home) });
+ languageClient.sendNotification(DidChangeConfigurationNotification.type, {
176
+ settings: {
177
+ java: getJavaConfig(requirements.java_home),
178
+ }
179
+ });
180
onConfigurationChange(languageClient, context);
181
}
182
0 commit comments