aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/main_loop
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-09-29 19:59:34 +0100
committerAleksey Kladov <[email protected]>2018-09-29 19:59:34 +0100
commit804e29402abbaea9d4bb6c47dab8414cda2b0051 (patch)
treee0b9735ec1c24ab4f2f730d3dd969db52cba807c /crates/ra_lsp_server/src/main_loop
parentbaaf027da04445c18e6d50b0956b234d33c1a2f1 (diff)
fix code actions
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop')
-rw-r--r--crates/ra_lsp_server/src/main_loop/handlers.rs2
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);