diff options
author | Jeremy Kolb <[email protected]> | 2020-01-14 14:07:28 +0000 |
---|---|---|
committer | Jeremy Kolb <[email protected]> | 2020-01-14 14:08:45 +0000 |
commit | 325912f01ea11ae2e16e01ffaa7ff71329ff1702 (patch) | |
tree | 27f33a25cb025ece985883ff92762909b00dda4f /crates/ra_lsp_server/src | |
parent | ec4775830c14194c1bd7bfcdbce25cf21bee0b44 (diff) |
Tweak add_custom_impl
Diffstat (limited to 'crates/ra_lsp_server/src')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/handlers.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index a592f0a12..d5a8bbe4d 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs | |||
@@ -710,6 +710,7 @@ pub fn handle_code_action( | |||
710 | title: command.title.clone(), | 710 | title: command.title.clone(), |
711 | kind: match assist.id { | 711 | kind: match assist.id { |
712 | AssistId("introduce_variable") => Some("refactor.extract.variable".to_string()), | 712 | AssistId("introduce_variable") => Some("refactor.extract.variable".to_string()), |
713 | AssistId("add_custom_impl") => Some("refactor.rewrite.add_custom_impl".to_string()), | ||
713 | _ => None, | 714 | _ => None, |
714 | }, | 715 | }, |
715 | diagnostics: None, | 716 | diagnostics: None, |