Skip to content

Commit f62cad6

Browse files
authored
Fix Initializing in the status bar instead of Indexing. (#11471)
1 parent eec372a commit f62cad6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Extension/src/LanguageServer/client.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2436,9 +2436,12 @@ export class DefaultClient implements Client {
24362436
testHook.updateStatus(status);
24372437
} else if (message.endsWith("Initializing")) {
24382438
this.model.isInitializingWorkspace.Value = true;
2439+
this.model.isIndexingWorkspace.Value = false;
2440+
this.model.isParsingWorkspace.Value = false;
24392441
} else if (message.endsWith("Indexing")) {
24402442
this.model.isIndexingWorkspace.Value = true;
24412443
this.model.isInitializingWorkspace.Value = false;
2444+
this.model.isParsingWorkspace.Value = false;
24422445
} else if (message.endsWith("files")) {
24432446
this.model.isParsingFiles.Value = true;
24442447
} else if (message.endsWith("IntelliSense")) {

0 commit comments

Comments
 (0)