diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index 51061543c2..79a54183e0 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs @@ -418,7 +418,7 @@ pub fn handle_code_action( let edit = source_edit.try_conv_with(&world)?; let cmd = Command { title, - command: "libsyntax-rust.applySourceChange".to_string(), + command: "ra-lsp.applySourceChange".to_string(), arguments: Some(vec![to_value(edit).unwrap()]), }; res.push(cmd);