We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eec372a commit f62cad6Copy full SHA for f62cad6
1 file changed
Extension/src/LanguageServer/client.ts
@@ -2436,9 +2436,12 @@ export class DefaultClient implements Client {
2436
testHook.updateStatus(status);
2437
} else if (message.endsWith("Initializing")) {
2438
this.model.isInitializingWorkspace.Value = true;
2439
+ this.model.isIndexingWorkspace.Value = false;
2440
+ this.model.isParsingWorkspace.Value = false;
2441
} else if (message.endsWith("Indexing")) {
2442
this.model.isIndexingWorkspace.Value = true;
2443
this.model.isInitializingWorkspace.Value = false;
2444
2445
} else if (message.endsWith("files")) {
2446
this.model.isParsingFiles.Value = true;
2447
} else if (message.endsWith("IntelliSense")) {
0 commit comments