mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-15 06:33:58 +00:00
Merge #6378
6378: Better ordering of assists r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
db2c379bae
1 changed files with 3 additions and 2 deletions
|
@ -200,7 +200,6 @@ mod handlers {
|
||||||
move_guard::move_guard_to_arm_body,
|
move_guard::move_guard_to_arm_body,
|
||||||
qualify_path::qualify_path,
|
qualify_path::qualify_path,
|
||||||
raw_string::add_hash,
|
raw_string::add_hash,
|
||||||
raw_string::make_raw_string,
|
|
||||||
raw_string::make_usual_string,
|
raw_string::make_usual_string,
|
||||||
raw_string::remove_hash,
|
raw_string::remove_hash,
|
||||||
remove_dbg::remove_dbg,
|
remove_dbg::remove_dbg,
|
||||||
|
@ -211,13 +210,15 @@ mod handlers {
|
||||||
replace_impl_trait_with_generic::replace_impl_trait_with_generic,
|
replace_impl_trait_with_generic::replace_impl_trait_with_generic,
|
||||||
replace_let_with_if_let::replace_let_with_if_let,
|
replace_let_with_if_let::replace_let_with_if_let,
|
||||||
replace_qualified_name_with_use::replace_qualified_name_with_use,
|
replace_qualified_name_with_use::replace_qualified_name_with_use,
|
||||||
replace_string_with_char::replace_string_with_char,
|
|
||||||
replace_unwrap_with_match::replace_unwrap_with_match,
|
replace_unwrap_with_match::replace_unwrap_with_match,
|
||||||
split_import::split_import,
|
split_import::split_import,
|
||||||
unwrap_block::unwrap_block,
|
unwrap_block::unwrap_block,
|
||||||
// These are manually sorted for better priorities
|
// These are manually sorted for better priorities
|
||||||
add_missing_impl_members::add_missing_impl_members,
|
add_missing_impl_members::add_missing_impl_members,
|
||||||
add_missing_impl_members::add_missing_default_members,
|
add_missing_impl_members::add_missing_default_members,
|
||||||
|
//
|
||||||
|
replace_string_with_char::replace_string_with_char,
|
||||||
|
raw_string::make_raw_string,
|
||||||
// Are you sure you want to add new assist here, and not to the
|
// Are you sure you want to add new assist here, and not to the
|
||||||
// sorted list above?
|
// sorted list above?
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue