aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-02-19 11:44:20 +0000
committerAleksey Kladov <[email protected]>2020-02-19 11:44:54 +0000
commit312a7796105ae33f8f73e77291c0c4d46f6202d5 (patch)
treeba0dd37991220be14187f03b066c6490776eb6df /crates/ra_assists/src/lib.rs
parentd07f043ef1c99491cb172f3c3474b31c97501d7a (diff)
Add `remove_mut` assist
Diffstat (limited to 'crates/ra_assists/src/lib.rs')
-rw-r--r--crates/ra_assists/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ra_assists/src/lib.rs b/crates/ra_assists/src/lib.rs
index f4a7497db..d7998b0d1 100644
--- a/crates/ra_assists/src/lib.rs
+++ b/crates/ra_assists/src/lib.rs
@@ -108,6 +108,7 @@ mod handlers {
108 mod introduce_variable; 108 mod introduce_variable;
109 mod inline_local_variable; 109 mod inline_local_variable;
110 mod raw_string; 110 mod raw_string;
111 mod remove_mut;
111 mod replace_if_let_with_match; 112 mod replace_if_let_with_match;
112 mod split_import; 113 mod split_import;
113 mod remove_dbg; 114 mod remove_dbg;
@@ -147,6 +148,7 @@ mod handlers {
147 raw_string::make_raw_string, 148 raw_string::make_raw_string,
148 raw_string::make_usual_string, 149 raw_string::make_usual_string,
149 raw_string::remove_hash, 150 raw_string::remove_hash,
151 remove_mut::remove_mut,
150 early_return::convert_to_guarded_return, 152 early_return::convert_to_guarded_return,
151 auto_import::auto_import, 153 auto_import::auto_import,
152 ] 154 ]