aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/handlers/reorder_fields.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary clone that prevented clippy from moving onkjeremy2020-05-221-1/+1
|
* Relax cursor position tests in assistsAleksey Kladov2020-05-201-3/+3
| | | | Those will be replaced with snippets anyway
* Refactor assists API to be more convenient for adding new assistsAleksey Kladov2020-05-071-19/+10
| | | | It now duplicates completion API in its shape.
* Move target to AssistLabelAleksey Kladov2020-05-061-2/+2
| | | | | Target is used for assists sorting, so we need it before we compute the action.
* Merge assits::test_helpers and testsAleksey Kladov2020-05-061-1/+1
|
* Remove more unnecessary bracesLaurențiu Nicola2020-04-121-2/+2
|
* Align grammar for record patterns and literalsAleksey Kladov2020-04-111-19/+13
| | | | | | The grammar now looks like this [name_ref :] pat
* Fix doc testsGeoffrey Copin2020-04-111-2/+1
|
* Add documentation commentGeoffrey Copin2020-04-111-0/+16
|
* Avoid adding a RecordFieldPat variant to the Pat enumGeoffrey Copin2020-04-111-39/+47
|
* Remove Option unwrapingGeoffrey Copin2020-04-111-3/+3
|
* Implement assist "Reorder field names"Geoffrey Copin2020-04-091-0/+207