We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c9e000 commit 70944b6Copy full SHA for 70944b6
1 file changed
Extension/src/LanguageServer/client.ts
@@ -1072,13 +1072,14 @@ export class DefaultClient implements Client {
1072
let settings: CppSettings[] = [];
1073
let otherSettings: OtherSettings[] = [];
1074
1075
- settings.push(workspaceSettings);
1076
- otherSettings.push(workspaceOtherSettings);
1077
if (vscode.workspace.workspaceFolders) {
1078
for (let workspaceFolder of vscode.workspace.workspaceFolders) {
1079
settings.push(new CppSettings(workspaceFolder.uri));
1080
otherSettings.push(new OtherSettings(workspaceFolder.uri));
1081
}
+ } else {
+ settings.push(workspaceSettings);
1082
+ otherSettings.push(workspaceOtherSettings);
1083
1084
1085
for (let setting of settings) {
0 commit comments