We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
realTimeDiagnostics
1 parent 8ad10b5 commit 9c2fbaaCopy full SHA for 9c2fbaa
arduino-ide-extension/src/browser/contributions/ino-language.ts
@@ -107,6 +107,9 @@ export class InoLanguage extends SketchContribution {
107
}
108
this.logger.info(`Starting language server: ${fqbn}`);
109
const log = this.preferences.get('arduino.language.log');
110
+ const realTimeDiagnostics = this.preferences.get(
111
+ 'arduino.language.realTimeDiagnostics'
112
+ );
113
let currentSketchPath: string | undefined = undefined;
114
if (log) {
115
const currentSketch = await this.sketchServiceClient.currentSketch();
@@ -141,6 +144,7 @@ export class InoLanguage extends SketchContribution {
141
144
fqbn,
142
145
name: name ? `"${name}"` : undefined,
143
146
},
147
+ realTimeDiagnostics,
148
149
),
150
]);
0 commit comments