diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs index 580ad1f2c8f..5480b9e4d41 100644 --- a/crates/rust-analyzer/src/main_loop.rs +++ b/crates/rust-analyzer/src/main_loop.rs @@ -631,6 +631,9 @@ fn on_notification( } Err(not) => not, }; + if not.method.starts_with("$/") { + return Ok(()); + } log::error!("unhandled notification: {:?}", not); Ok(()) }