aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/assists/flip_trait_bound.rs
Commit message (Collapse)AuthorAgeFilesLines
* Fix casingJeremy Kolb2020-01-141-1/+1
|
* More UI friendly labelsJeremy Kolb2020-01-141-1/+1
|
* simplify AssistCtx APIAleksey Kladov2019-10-271-5/+3
| | | | | We never actually use ability to create multiple actions out of a single context
* use new api for flip_trait_bound assistAleksey Kladov2019-10-271-11/+22
|
* Add tests for the trait bound flip assist.Wesley Norris2019-10-271-0/+76
| | | | Co-authored-by: vlthr <[email protected]>
* Fixes #2054.Wesley Norris2019-10-271-0/+32
This adds the `flip_trait_bound` assist which allows for the swapping of two trait bounds in a trait list that are next to each other.