diff --git a/crates/rust-analyzer/src/handlers.rs b/crates/rust-analyzer/src/handlers.rs index 1f21533cb0a3..53e64f1060f7 100644 --- a/crates/rust-analyzer/src/handlers.rs +++ b/crates/rust-analyzer/src/handlers.rs @@ -447,9 +447,11 @@ pub(crate) fn handle_will_rename_files( } else { let old_name = from_path.file_stem()?.to_str()?; let new_name = to_path.file_stem()?.to_str()?; - match(old_name,new_name){ - ("mod","mod") =>Some((snap.url_to_file_id(&from).ok()?, new_name.to_string())), - _=>None + match (old_name, new_name) { + ("mod", "mod") => { + Some((snap.url_to_file_id(&from).ok()?, new_name.to_string())) + } + _ => None, } } }