We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7bd343 commit 6bc6d49Copy full SHA for 6bc6d49
Extension/src/LanguageServer/client.ts
@@ -1825,7 +1825,7 @@ class DefaultClient implements Client {
1825
const numTotalToLex: number = this.referencesCurrentProgress.targetReferencesProgress.length;
1826
const numFinishedLexing: number = numTotalToLex - numWaitingToLex - numLexing;
1827
const numTotalToParse: number = this.referencesCurrentProgress.targetReferencesProgress.length - numFinishedWithoutConfirming;
1828
- if (numLexing >= numParsing) {
+ if (numLexing >= numParsing && numFinishedConfirming === 0) {
1829
if (numTotalToLex === 0) {
1830
currentMessage = "Searching files."; // TODO: Prevent this from happening.
1831
} else {
0 commit comments