aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists
Commit message (Collapse)AuthorAgeFilesLines
...
* Refactor assists API to be more convenient for adding new assistsAleksey Kladov2020-05-0738-593/+521
| | | | It now duplicates completion API in its shape.
* add Ok wrappingBenjamin Coenen2020-05-063-0/+986
| | | | Signed-off-by: Benjamin Coenen <[email protected]>
* SimplifyAleksey Kladov2020-05-063-33/+17
|
* RenameAleksey Kladov2020-05-063-12/+12
|
* Use SourceChange for assistsAleksey Kladov2020-05-063-35/+33
|
* Fix TODOAleksey Kladov2020-05-062-19/+13
|
* Move target to AssistLabelAleksey Kladov2020-05-0636-256/+292
| | | | | Target is used for assists sorting, so we need it before we compute the action.
* RegenerateAleksey Kladov2020-05-062-38/+40
|
* Merge doc_tests and testsAleksey Kladov2020-05-064-41/+28
|
* Merge assits::test_helpers and testsAleksey Kladov2020-05-0635-180/+172
|
* Fixup testsAleksey Kladov2020-05-052-13/+13
|
* Rename AtomTextEdit -> IndelAleksey Kladov2020-05-051-3/+1
|
* Minor cleanupsAleksey Kladov2020-05-052-6/+9
|
* Fix compilationAleksey Kladov2020-05-051-1/+1
|
* Move group_label where it belongsAleksey Kladov2020-05-052-7/+6
|
* use GroupLabel for type safetyAleksey Kladov2020-05-051-3/+4
|
* Minor renameAleksey Kladov2020-05-051-3/+3
|
* Flip Assist::new argumentsAleksey Kladov2020-05-052-4/+4
|
* Rename ImplItem to AssocItemEdwin Cheng2020-05-053-20/+20
|
* Merge #4265bors[bot]2020-05-051-3/+10
|\ | | | | | | | | | | | | | | 4265: Make `change_visibility` assist work for tuple struct fields r=matklad a=Jesse-Bakker Fixes #4206 Co-authored-by: Jesse Bakker <[email protected]>
| * Make `change_visibility` assist work for tuple struct field visibilityJesse Bakker2020-05-021-3/+10
| |
* | SimplifyAleksey Kladov2020-05-041-33/+34
| |
* | SimplifyAleksey Kladov2020-05-041-13/+13
| |
* | Support auto-import in macroEdwin Cheng2020-05-025-19/+66
|/
* Add unwrap block assist #4156Benjamin Coenen2020-05-021-3/+2
| | | | Signed-off-by: Benjamin Coenen <[email protected]>
* Merge branch 'master' of github.com:rust-analyzer/rust-analyzerBenjamin Coenen2020-05-028-91/+134
|\
| * Add missing members generates indented blocksAleksey Kladov2020-05-022-79/+119
| |
| * Introduce EffectExprAleksey Kladov2020-05-024-11/+12
| |
| * Remove lower_path from AssistCtx to SemanticEdwin Cheng2020-05-012-7/+4
| |
| * Introduce LowerCtx for path loweringEdwin Cheng2020-05-013-4/+9
| |
* | Add unwrap block assist #4156Benjamin Coenen2020-05-021-76/+13
| | | | | | | | Signed-off-by: Benjamin Coenen <[email protected]>
* | Add unwrap block assist #4156Benjamin Coenen2020-05-011-46/+23
| | | | | | | | Signed-off-by: Benjamin Coenen <[email protected]>
* | Merge branch 'master' of github.com:rust-analyzer/rust-analyzerBenjamin Coenen2020-05-016-90/+237
|\|
| * More principled approach for finding From traitAleksey Kladov2020-04-293-37/+94
| |
| * Use specific pattern when translating if-let-else to matchAleksey Kladov2020-04-294-20/+123
| | | | | | | | | | | | We *probably* should actually use the same machinery here, as we do for fill match arms, but just special-casing options and results seems to be a good first step.
| * Move shared assist code to utilsAleksey Kladov2020-04-293-48/+35
| |
* | Add unwrap block assist #4156Benjamin Coenen2020-04-292-3/+3
| | | | | | | | Signed-off-by: Benjamin Coenen <[email protected]>
* | Add unwrap block assist #4156Benjamin Coenen2020-04-293-0/+456
|/ | | | Signed-off-by: Benjamin Coenen <[email protected]>
* Switch to TryFromAleksey Kladov2020-04-254-6/+6
|
* Convert tests to text-sizeAleksey Kladov2020-04-251-2/+1
|
* Convert code to text-sizeAleksey Kladov2020-04-2521-56/+56
|
* Add `pub(crate)` to functions generated in other moduleTimo Freiberg2020-04-211-46/+23
|
* Jump to sourceChanges in other filesTimo Freiberg2020-04-212-13/+10
|
* Add target file information to AssistActionTimo Freiberg2020-04-213-16/+78
|
* Make add_function generate functions in other modules via qualified pathTimo Freiberg2020-04-212-26/+197
|
* Do not add default and closure types in 'add explicit type' assistKirill Bulatov2020-04-211-5/+43
|
* Fix panic in split_imports assistAleksey Kladov2020-04-201-1/+6
| | | | | | | | | | | | | | | The fix is admittedly quit literally just papering over. Long-term, I see two more principled approaches: * we switch to a fully tree-based impl, without parse . to_string step; with this approach, there shouldn't be any panics. The results might be nonsensical, but so was the original input. * we preserve the invariant that re-parsing constructed node is an identity, and make all the `make_xxx` method return an `Option`. closes #4044
* Some clippy fixesJeremy Kolb2020-04-193-3/+3
|
* Change add_function assist to use todo!()Timo Freiberg2020-04-132-28/+28
|
* Fix PRIceSentry2020-04-131-14/+8
|