From 3933174c290873e8658d7d4b874dab2543bb99c0 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Mon, 24 Jun 2024 10:19:58 -0700 Subject: [PATCH] Fix the tag parser busy indicator while initializing. (#12404) --- Extension/src/LanguageServer/ui.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Extension/src/LanguageServer/ui.ts b/Extension/src/LanguageServer/ui.ts index bcea62af1..056645a29 100644 --- a/Extension/src/LanguageServer/ui.ts +++ b/Extension/src/LanguageServer/ui.ts @@ -91,6 +91,10 @@ export class LanguageStatusUI { constructor() { this.intelliSenseStatusItem = this.createIntelliSenseStatusItem(); this.tagParseStatusItem = this.createTagParseStatusItem(); + + // The tag parser is always busy when initializing. + // The detail text says "Initializing..." until the tag parser is ready. + this.tagParseStatusItem.busy = true; this.codeAnalysisStatusItem = this.createCodeAnalysisStatusItem(); this.referencesStatusBarItem = this.createReferencesStatusBarItem();