Skip to content

Commit 003106c

Browse files
committed
Keep config diagnostics across changes
1 parent dfae2a5 commit 003106c

File tree

6 files changed

+213
-100
lines changed

6 files changed

+213
-100
lines changed

src/tools/rust-analyzer/crates/rust-analyzer/src/bin/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use anyhow::Context;
1717
use lsp_server::Connection;
1818
use rust_analyzer::{
1919
cli::flags,
20-
config::{Config, ConfigChange, ConfigError},
20+
config::{Config, ConfigChange, ConfigErrors},
2121
from_json,
2222
};
2323
use semver::Version;
@@ -229,7 +229,7 @@ fn run_server() -> anyhow::Result<()> {
229229
let mut change = ConfigChange::default();
230230
change.change_client_config(json);
231231

232-
let error_sink: ConfigError;
232+
let error_sink: ConfigErrors;
233233
(config, error_sink, _) = config.apply_change(change);
234234

235235
if !error_sink.is_empty() {

0 commit comments

Comments
 (0)