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 f0a8c1a commit 18f29bfCopy full SHA for 18f29bf
Extension/src/LanguageServer/extension.ts
@@ -173,9 +173,9 @@ export function activate(activationEventOccurred: boolean): void {
173
for (let i: number = 0; i < vscode.workspace.workspaceFolders.length; ++i) {
174
const config: string = path.join(vscode.workspace.workspaceFolders[i].uri.fsPath, ".vscode/c_cpp_properties.json");
175
if (fs.existsSync(config)) {
176
+ cppPropertiesExists = true;
177
vscode.workspace.openTextDocument(config).then((doc: vscode.TextDocument) => {
178
vscode.languages.setTextDocumentLanguage(doc, "jsonc");
- cppPropertiesExists = true;
179
});
180
}
181
0 commit comments