diff options
Diffstat (limited to 'crates/assists/src/lib.rs')
-rw-r--r-- | crates/assists/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/assists/src/lib.rs b/crates/assists/src/lib.rs index 17e9312db..dfe6c2729 100644 --- a/crates/assists/src/lib.rs +++ b/crates/assists/src/lib.rs | |||
@@ -141,7 +141,6 @@ mod handlers { | |||
141 | mod generate_function; | 141 | mod generate_function; |
142 | mod generate_impl; | 142 | mod generate_impl; |
143 | mod generate_new; | 143 | mod generate_new; |
144 | mod ignore_test; | ||
145 | mod infer_function_return_type; | 144 | mod infer_function_return_type; |
146 | mod inline_local_variable; | 145 | mod inline_local_variable; |
147 | mod introduce_named_lifetime; | 146 | mod introduce_named_lifetime; |
@@ -164,6 +163,7 @@ mod handlers { | |||
164 | mod replace_string_with_char; | 163 | mod replace_string_with_char; |
165 | mod replace_unwrap_with_match; | 164 | mod replace_unwrap_with_match; |
166 | mod split_import; | 165 | mod split_import; |
166 | mod toggle_ignore; | ||
167 | mod unwrap_block; | 167 | mod unwrap_block; |
168 | mod wrap_return_type_in_result; | 168 | mod wrap_return_type_in_result; |
169 | 169 | ||
@@ -190,7 +190,6 @@ mod handlers { | |||
190 | generate_function::generate_function, | 190 | generate_function::generate_function, |
191 | generate_impl::generate_impl, | 191 | generate_impl::generate_impl, |
192 | generate_new::generate_new, | 192 | generate_new::generate_new, |
193 | ignore_test::ignore_test, | ||
194 | infer_function_return_type::infer_function_return_type, | 193 | infer_function_return_type::infer_function_return_type, |
195 | inline_local_variable::inline_local_variable, | 194 | inline_local_variable::inline_local_variable, |
196 | introduce_named_lifetime::introduce_named_lifetime, | 195 | introduce_named_lifetime::introduce_named_lifetime, |
@@ -215,6 +214,7 @@ mod handlers { | |||
215 | replace_qualified_name_with_use::replace_qualified_name_with_use, | 214 | replace_qualified_name_with_use::replace_qualified_name_with_use, |
216 | replace_unwrap_with_match::replace_unwrap_with_match, | 215 | replace_unwrap_with_match::replace_unwrap_with_match, |
217 | split_import::split_import, | 216 | split_import::split_import, |
217 | toggle_ignore::toggle_ignore, | ||
218 | unwrap_block::unwrap_block, | 218 | unwrap_block::unwrap_block, |
219 | wrap_return_type_in_result::wrap_return_type_in_result, | 219 | wrap_return_type_in_result::wrap_return_type_in_result, |
220 | // These are manually sorted for better priorities | 220 | // These are manually sorted for better priorities |