diff options
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/handlers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index 51061543c..79a54183e 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( | |||
418 | let edit = source_edit.try_conv_with(&world)?; | 418 | let edit = source_edit.try_conv_with(&world)?; |
419 | let cmd = Command { | 419 | let cmd = Command { |
420 | title, | 420 | title, |
421 | command: "libsyntax-rust.applySourceChange".to_string(), | 421 | command: "ra-lsp.applySourceChange".to_string(), |
422 | arguments: Some(vec![to_value(edit).unwrap()]), | 422 | arguments: Some(vec![to_value(edit).unwrap()]), |
423 | }; | 423 | }; |
424 | res.push(cmd); | 424 | res.push(cmd); |