We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ac4cca commit 0f7a714Copy full SHA for 0f7a714
crates/ra_lsp_server/src/main_loop/handlers.rs
@@ -598,6 +598,10 @@ pub fn handle_code_action(
598
for source_edit in assists.chain(fixes) {
599
let title = source_edit.label.clone();
600
let edit = source_edit.try_conv_with(&world)?;
601
+
602
+ // We cannot use the 'editor.action.showReferences' command directly
603
+ // because that command requires vscode types which we convert in the handler
604
+ // on the client side.
605
let cmd = Command {
606
title,
607
command: "rust-analyzer.applySourceChange".to_string(),
0 commit comments