This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ use crate::{
4545
4646pub ( crate ) fn handle_workspace_reload ( state : & mut GlobalState , _: ( ) ) -> Result < ( ) > {
4747 state. proc_macro_client = None ;
48+ state. proc_macro_changed = false ;
4849 state. fetch_workspaces_queue . request_op ( "reload workspace request" . to_string ( ) ) ;
4950 state. fetch_build_data_queue . request_op ( "reload workspace request" . to_string ( ) ) ;
5051 Ok ( ( ) )
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ impl GlobalState {
162162 }
163163
164164 pub ( crate ) fn fetch_build_data ( & mut self , cause : Cause ) {
165- tracing:: debug !( %cause, "will fetch build data" ) ;
165+ tracing:: info !( %cause, "will fetch build data" ) ;
166166 let workspaces = Arc :: clone ( & self . workspaces ) ;
167167 let config = self . config . cargo ( ) ;
168168 self . task_pool . handle . spawn_with_sender ( move |sender| {
Original file line number Diff line number Diff line change @@ -77,10 +77,10 @@ export class Ctx {
7777 }
7878
7979 setServerStatus ( status : ServerStatusParams ) {
80- this . statusBar . tooltip = status . message ?? "Ready" ;
8180 let icon = "" ;
8281 switch ( status . health ) {
8382 case "ok" :
83+ this . statusBar . tooltip = status . message ?? "Ready" ;
8484 this . statusBar . command = undefined ;
8585 this . statusBar . color = undefined ;
8686 this . statusBar . backgroundColor = undefined ;
@@ -105,7 +105,7 @@ export class Ctx {
105105 break ;
106106 }
107107 if ( ! status . quiescent ) icon = "$(sync~spin) " ;
108- this . statusBar . text = `${ icon } rust-analyzer` ;
108+ this . statusBar . text = `${ icon } rust-analyzer` ;
109109 }
110110
111111 pushCleanup ( d : Disposable ) {
You can’t perform that action at this time.
0 commit comments