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 1b2285c commit 4e2ffa2Copy full SHA for 4e2ffa2
Extension/src/LanguageServer/configurations.ts
@@ -2132,6 +2132,9 @@ export class CppProperties {
2132
badPath = `"${expandedPaths[0]}"`;
2133
}
2134
message = localize('cannot.find', "Cannot find: {0}", badPath);
2135
+ if (incorrectExpandedPaths.length === 1 && incorrectExpandedPaths[0].match(/".*"/) !== null) {
2136
+ message += '.\n' + localize('wrapped.with.quotes', 'Do not add extra quotes around paths.');
2137
+ }
2138
newSquiggleMetrics.PathNonExistent++;
2139
} else {
2140
// Check for file versus path mismatches.
0 commit comments