File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Extension/src/LanguageServer Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -2436,9 +2436,12 @@ export class DefaultClient implements Client {
2436
2436
testHook . updateStatus ( status ) ;
2437
2437
} else if ( message . endsWith ( "Initializing" ) ) {
2438
2438
this . model . isInitializingWorkspace . Value = true ;
2439
+ this . model . isIndexingWorkspace . Value = false ;
2440
+ this . model . isParsingWorkspace . Value = false ;
2439
2441
} else if ( message . endsWith ( "Indexing" ) ) {
2440
2442
this . model . isIndexingWorkspace . Value = true ;
2441
2443
this . model . isInitializingWorkspace . Value = false ;
2444
+ this . model . isParsingWorkspace . Value = false ;
2442
2445
} else if ( message . endsWith ( "files" ) ) {
2443
2446
this . model . isParsingFiles . Value = true ;
2444
2447
} else if ( message . endsWith ( "IntelliSense" ) ) {
You can’t perform that action at this time.
0 commit comments