We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3110d8 commit 4e8203aCopy full SHA for 4e8203a
1 file changed
Extension/src/LanguageServer/client.ts
@@ -2936,6 +2936,11 @@ export class DefaultClient implements Client {
2936
this.model.isIndexingWorkspace.Value = true;
2937
this.model.isInitializingWorkspace.Value = false;
2938
this.model.isParsingWorkspace.Value = false;
2939
+ } else if (message.endsWith("Failed")) {
2940
+ this.model.isInitializingWorkspace.Value = false;
2941
+ this.model.isIndexingWorkspace.Value = false;
2942
+ this.model.isParsingWorkspace.Value = false;
2943
+ this.model.isParsingFiles.Value = false;
2944
} else if (message.endsWith("files")) {
2945
this.model.isParsingFiles.Value = true;
2946
} else if (message.endsWith("IntelliSense")) {
0 commit comments