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 27f9faf commit 0e309a7Copy full SHA for 0e309a7
Extension/src/LanguageServer/client.ts
@@ -1856,9 +1856,11 @@ export class DefaultClient implements Client {
1856
if (!currentProvider.isReady) {
1857
return;
1858
}
1859
+
1860
await Promise.all([
1861
this.clearCustomConfigurations(),
- this.handleRemoveAllCodeAnalysisProblems(),
1862
+ this.handleRemoveAllCodeAnalysisProblems()]);
1863
+ await Promise.all([
1864
...[...this.trackedDocuments].map(document => this.provideCustomConfiguration(document.uri, undefined, true))
1865
]);
1866
0 commit comments