Skip to content

Commit

Permalink
Fix Initializing in the status bar instead of Indexing. (#11471)
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-mcmanus authored Sep 26, 2023
1 parent eec372a commit f62cad6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Extension/src/LanguageServer/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2436,9 +2436,12 @@ export class DefaultClient implements Client {
testHook.updateStatus(status);
} else if (message.endsWith("Initializing")) {
this.model.isInitializingWorkspace.Value = true;
this.model.isIndexingWorkspace.Value = false;
this.model.isParsingWorkspace.Value = false;
} else if (message.endsWith("Indexing")) {
this.model.isIndexingWorkspace.Value = true;
this.model.isInitializingWorkspace.Value = false;
this.model.isParsingWorkspace.Value = false;
} else if (message.endsWith("files")) {
this.model.isParsingFiles.Value = true;
} else if (message.endsWith("IntelliSense")) {
Expand Down

0 comments on commit f62cad6

Please sign in to comment.