aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove unnecessary lifetime parameterKirill Bulatov2020-01-262-8/+8
|
* Initial auto import action implementationKirill Bulatov2020-01-265-15/+317
|
* fixed inline_local_variable bugTomáš2020-01-251-0/+15
|
* added eq_token() method to LetStmtTomasKralCZ2020-01-191-2/+1
|
* fix 'add_explicit_type' assist rangeTomasKralCZ2020-01-191-1/+26
|
* fix typo in 'inline_local_variable'TomasKralCZ2020-01-192-26/+26
|
* More natural trait setupAleksey Kladov2020-01-161-2/+2
|
* Make FromSource privateAleksey Kladov2020-01-162-5/+10
|
* Reduce visibilityKirill Bulatov2020-01-151-1/+1
|
* itertools::Either -> either::EitherKirill Bulatov2020-01-153-3/+3
|
* Apply the api design suggestionsKirill Bulatov2020-01-153-28/+45
|
* Another attempt to add multiple editsKirill Bulatov2020-01-154-13/+49
|
* More orthogonal path editingAleksey Kladov2020-01-151-3/+10
|
* Cleanup assertkjeremy2020-01-141-5/+1
|
* unwrapJeremy Kolb2020-01-141-2/+2
|
* Assert that first letter is capitalizedJeremy Kolb2020-01-141-0/+6
|
* Fix casingJeremy Kolb2020-01-1421-30/+33
|
* More UI friendly labelsJeremy Kolb2020-01-1423-35/+43
|
* Tweak add_custom_implJeremy Kolb2020-01-141-1/+4
|
* Some clippy lintskjeremy2020-01-131-1/+1
|
* Qualify paths in 'fill match arms' assistFlorian Diebold2020-01-122-17/+52
|
* Use FxHashMapFlorian Diebold2020-01-112-3/+4
|
* Apply review suggestionsFlorian Diebold2020-01-111-7/+8
|
* Fix ordering problem between qualifying paths and substituting paramsFlorian Diebold2020-01-113-113/+187
|
* Some more refactoringFlorian Diebold2020-01-111-8/+6
|
* Fix file ID when qualifying paths; add another failing testFlorian Diebold2020-01-111-3/+31
|
* Handle type argsFlorian Diebold2020-01-111-9/+12
|
* More failing testsFlorian Diebold2020-01-111-1/+126
|
* Qualify some paths in 'add missing impl members'Florian Diebold2020-01-111-2/+47
|
* Add testFlorian Diebold2020-01-111-0/+23
|
* BinOp helper to detect assignmentJeremy Kolb2020-01-041-11/+1
|
* Merge #2650bors[bot]2019-12-291-0/+18
|\ | | | | | | | | | | | | | | 2650: Add macro call support for SourceAnalyzer::type_of r=matklad a=edwin0cheng Co-authored-by: Edwin Cheng <[email protected]>
| * Add macro call support for type_ofEdwin Cheng2019-12-231-0/+18
| |
* | Fill in type params in 'add missing impl members' assistFlorian Diebold2019-12-243-26/+129
|/
* Clippy lintskjeremy2019-12-201-5/+5
|
* Forbid <T>::foo syntax in mod pathsAleksey Kladov2019-12-181-1/+1
|
* Refactor PathKindAleksey Kladov2019-12-171-2/+8
|
* Use different types for path with and without genericsAleksey Kladov2019-12-141-4/+2
|
* Remove some unwraps in add_newkjeremy2019-12-131-19/+16
|
* Remove more dead codeAleksey Kladov2019-12-081-2/+0
|
* Get rid of unwraps in add_newFlorian Diebold2019-12-071-24/+21
| | | | Probably fixes #2464.
* Merge #2018bors[bot]2019-12-023-0/+227
|\ | | | | | | | | | | | | | | | | | | 2018: assists: add assist for custom implementation for derived trait r=matklad a=paulolieuthier Please, tell me if something could be more idiomatic or efficient. Fixes #1256. Co-authored-by: Paulo Lieuthier <[email protected]>
| * docs: describe new feature 'add custom impl for derived trait'Paulo Lieuthier2019-11-282-0/+36
| |
| * assists: add assist for custom implementation for derived traitPaulo Lieuthier2019-11-282-0/+191
| |
* | Rename Source -> InFileAleksey Kladov2019-11-282-5/+5
|/
* Introduce hir::TypeAleksey Kladov2019-11-262-14/+6
| | | | It should provide a convenient API over more low-level Ty
* :arrow_up: salsaAleksey Kladov2019-11-261-0/+3
|
* Fix hir for ast::UnionDefAleksey Kladov2019-11-251-2/+2
|
* Merge #2343bors[bot]2019-11-244-31/+130
|\ | | | | | | | | | | | | | | | | | | 2343: implement assist invert_if r=matklad a=bravomikekilo fix [issue 2219 invert if condition](https://github.com/rust-analyzer/rust-analyzer/issues/2219) I put the assist cursor range to `if` of the if expression, because both condition and body will be replaced. Is there any way to replace them without cover the cursor position? @matklad Co-authored-by: bravomikekilo <[email protected]>
| * do refact and fix some issuebravomikekilo2019-11-243-54/+45
| |