aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/flip_binexpr.rs
Commit message (Collapse)AuthorAgeFilesLines
* rename range -> text_rangeAleksey Kladov2019-07-201-3/+3
|
* migrate ra_assists to the new ASTAleksey Kladov2019-07-191-2/+2
|
* allow rustfmt to reorder importsAleksey Kladov2019-07-041-2/+2
| | | | | | This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway
* switch to new rowanAleksey Kladov2019-04-011-1/+1
|
* Flip any binary expression except assignments.Marco Groppo2019-03-261-64/+56
|
* Assist to flip (some) binary expressions.Marco Groppo2019-03-251-0/+149
This assist can flip the following operators: ==, !=, >, >=, <, <=.