@@ -15,7 +15,11 @@ use std::{env, fs, path::PathBuf, process::ExitCode, sync::Arc};
15
15
16
16
use anyhow:: Context ;
17
17
use lsp_server:: Connection ;
18
- use rust_analyzer:: { cli:: flags, config:: Config , from_json} ;
18
+ use rust_analyzer:: {
19
+ cli:: flags,
20
+ config:: { Config , ConfigChange , ConfigError } ,
21
+ from_json,
22
+ } ;
19
23
use semver:: Version ;
20
24
use tracing_subscriber:: fmt:: writer:: BoxMakeWriter ;
21
25
use vfs:: AbsPathBuf ;
@@ -220,16 +224,20 @@ fn run_server() -> anyhow::Result<()> {
220
224
. filter ( |workspaces| !workspaces. is_empty ( ) )
221
225
. unwrap_or_else ( || vec ! [ root_path. clone( ) ] ) ;
222
226
let mut config =
223
- Config :: new ( root_path, capabilities, workspace_roots, visual_studio_code_version) ;
227
+ Config :: new ( root_path, capabilities, workspace_roots, visual_studio_code_version, None ) ;
224
228
if let Some ( json) = initialization_options {
225
- if let Err ( e) = config. update ( json) {
229
+ let mut change = ConfigChange :: default ( ) ;
230
+ change. change_client_config ( json) ;
231
+ let mut error_sink = ConfigError :: default ( ) ;
232
+ config = config. apply_change ( change, & mut error_sink) ;
233
+ if !error_sink. is_empty ( ) {
226
234
use lsp_types:: {
227
235
notification:: { Notification , ShowMessage } ,
228
236
MessageType , ShowMessageParams ,
229
237
} ;
230
238
let not = lsp_server:: Notification :: new (
231
239
ShowMessage :: METHOD . to_owned ( ) ,
232
- ShowMessageParams { typ : MessageType :: WARNING , message : e . to_string ( ) } ,
240
+ ShowMessageParams { typ : MessageType :: WARNING , message : error_sink . to_string ( ) } ,
233
241
) ;
234
242
connection. sender . send ( lsp_server:: Message :: Notification ( not) ) . unwrap ( ) ;
235
243
}
0 commit comments