aboutsummaryrefslogtreecommitdiff
path: root/crates/rust-analyzer/src/handlers.rs
diff options
context:
space:
mode:
authorLukas Wirth <[email protected]>2021-03-20 12:44:39 +0000
committerLukas Wirth <[email protected]>2021-03-20 12:57:58 +0000
commita9a7c5cb1f76f6d446e24a6867d404a62e60d8e2 (patch)
treebc82a780bee6b929ab66e1bacef5b9b1abdc3ada /crates/rust-analyzer/src/handlers.rs
parentd84912483dcdf568d8abd1c11832661758412f00 (diff)
Don't return a SourceChange on WillRenameFiles when nothing gets refactored
Diffstat (limited to 'crates/rust-analyzer/src/handlers.rs')
-rw-r--r--crates/rust-analyzer/src/handlers.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/crates/rust-analyzer/src/handlers.rs b/crates/rust-analyzer/src/handlers.rs
index b6f484e51..880fea622 100644
--- a/crates/rust-analyzer/src/handlers.rs
+++ b/crates/rust-analyzer/src/handlers.rs
@@ -465,8 +465,11 @@ pub(crate) fn handle_will_rename_files(
465 source_change.file_system_edits.clear(); 465 source_change.file_system_edits.clear();
466 // no collect here because we want to merge text edits on same file ids 466 // no collect here because we want to merge text edits on same file ids
467 source_change.extend(source_changes.map(|it| it.source_file_edits).flatten()); 467 source_change.extend(source_changes.map(|it| it.source_file_edits).flatten());
468 let workspace_edit = to_proto::workspace_edit(&snap, source_change)?; 468 if source_change.source_file_edits.is_empty() {
469 Ok(Some(workspace_edit)) 469 Ok(None)
470 } else {
471 to_proto::workspace_edit(&snap, source_change).map(Some)
472 }
470} 473}
471 474
472pub(crate) fn handle_goto_definition( 475pub(crate) fn handle_goto_definition(