aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists
Commit message (Collapse)AuthorAgeFilesLines
...
* minor cleanupAleksey Kladov2019-10-231-18/+36
|
* Adds "replace with guarded return" assistMikhail Modin2019-10-202-0/+278
|
* Merge #2002bors[bot]2019-10-141-3/+0
|\ | | | | | | | | | | | | | | 2002: Remove unused dependencies r=matklad a=sinkuu Co-authored-by: Shotaro Yamada <[email protected]>
| * Remove unused dependenciesShotaro Yamada2019-10-121-3/+0
| |
* | Merge #1999bors[bot]2019-10-141-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | 1999: Simplify find().is_some() to any() r=matklad a=kjeremy Co-authored-by: kjeremy <[email protected]>
| * | use any()kjeremy2019-10-111-1/+1
| |/
* / add syntax-tree based indentsAleksey Kladov2019-10-122-7/+12
|/
* Merge #1922bors[bot]2019-10-082-18/+93
|\ | | | | | | | | | | | | | | 1922: feat(assists): Make raw string unescaped r=matklad a=Geobert Last piece of https://github.com/rust-analyzer/rust-analyzer/issues/1730 Co-authored-by: Geobert Quach <[email protected]>
| * feat(assists): Address some PR commentsGeobert Quach2019-10-041-25/+24
| |
| * feat(assists): Even smarter with hashesGeobert Quach2019-10-011-12/+44
| | | | | | | | Count `"#*` streak only, extract the counting in a function, unit test this function
| * feat(assists): Be smart about hashesGeobert Quach2019-09-301-1/+36
| | | | | | | | Add max_hashes_streak + 1 hashes to the raw string
| * feat(assists): Keep only one version of make_raw_stringGeobert Quach2019-09-292-83/+13
| |
| * feat(assists): Make raw string unescapedGeobert Quach2019-09-263-1/+79
| |
* | remove `visitor` moduleEkaterina Babshukova2019-10-051-3/+3
| |
* | [#1807] Refactor file structureLúcás Meier2019-10-041-33/+33
| | | | | | | | | | Use the more conventional way of importing the ast types, and put the assist at the top of the file.
* | Fix formattingLúcás Meier2019-10-041-22/+9
| |
* | Create an assist for applying De Morgan's lawLúcás Meier2019-10-031-0/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1807 This assist can transform expressions of the form `!x || !y` into `!(x && y)`. This also works with `&&`. This assist will only trigger if the cursor is on the central logical operator. The main limitation of this current implementation is that both operands need to be an explicit negation, either of the form `!x`, or `x != y`. More operands could be accepted, but this would complicate the implementation quite a bit.
* | WIP: Add demorgan application with naive negationLúcás Meier2019-10-031-0/+2
| |
* | Merge branch 'master' into feature/issue/1856Alexander Andreev2019-09-306-277/+27
|\ \ | | | | | | | | | | | | # Conflicts: # crates/ra_assists/src/ast_editor.rs
| * | Fix API of AttruHOOCCOOHu2019-09-301-1/+1
| | |
| * | cleanup editorAleksey Kladov2019-09-301-4/+7
| | |
| * | remove ast_editor.rsAleksey Kladov2019-09-303-59/+4
| | |
| * | move remove bounds to ast/edit.rsAleksey Kladov2019-09-302-17/+1
| | |
| * | move field list to ast/edit.rsAleksey Kladov2019-09-302-100/+5
| | |
| * | migrate add impl items to the new editing APIAleksey Kladov2019-09-283-77/+15
| | |
| * | simplify strip attrsAleksey Kladov2019-09-282-26/+3
| | |
* | | Added test for check doc strings in crates.Alexander Andreev2019-09-3021-0/+42
|/ / | | | | | | #1856
* | Merge #1815bors[bot]2019-09-271-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1815: Support correct `$crate` expansion in macros r=uHOOCCOOHu a=uHOOCCOOHu This PR makes normal use cases of `$crate` from macros work as expected. It makes more macros from `std` work. Type inference works well with `panic`, `unimplemented`, `format`, and maybe more. Sadly that `vec![1, 2, 3]` still not works, but it is not longer an issue about macro. Screenshot: ![Screenshot_20190927_022136](https://user-images.githubusercontent.com/14816024/65714465-b4568f80-e0cd-11e9-8043-dd44c2ae8040.png) Co-authored-by: uHOOCCOOHu <[email protected]>
| * | Support `$crate` in item and expr place.uHOOCCOOHu2019-09-261-1/+1
| |/
* / Start simplifying editing APIAleksey Kladov2019-09-264-78/+4
|/
* move diff to ra_syntaxAleksey Kladov2019-09-261-24/+3
|
* keep ast creation API simpleAleksey Kladov2019-09-266-244/+74
|
* add new editing API, suitable for modifying several nodes at onceAleksey Kladov2019-09-253-31/+77
|
* Merge #1911bors[bot]2019-09-251-4/+4
|\ | | | | | | | | | | | | | | 1911: fewer monomorphisations r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * fewer monomorphisationsAleksey Kladov2019-09-251-4/+4
| |
* | clean up namingAleksey Kladov2019-09-251-1/+1
| |
* | shorten AstBuilder namesAleksey Kladov2019-09-254-50/+38
| |
* | minor builder cleanupsAleksey Kladov2019-09-253-55/+55
| |
* | cleaned up record field builderAleksey Kladov2019-09-251-6/+1
| |
* | move ast builder to a separate fileAleksey Kladov2019-09-256-234/+236
| |
* | move assists to subdirAleksey Kladov2019-09-2519-47/+53
|/
* Remove redundant clone()Shotaro Yamada2019-09-251-1/+1
|
* Revert SelfJeremy Kolb2019-09-231-1/+1
|
* Drive by lintskjeremy2019-09-232-2/+2
|
* Suspicious line endingskjeremy2019-09-201-370/+370
|
* feat(assists): Apply commentsGeobert Quach2019-09-191-100/+59
|
* feat(assists): Rename `escape_quote` to `escape_double_quote`Geobert Quach2019-09-191-3/+3
|
* feature(assists): Fix regressionGeobert Quach2019-09-191-2/+2
|
* feat(assists): manage `"` when removing hash and make_usual_stringGeobert Quach2019-09-191-5/+90
|
* feat(assists): raw string <-> usual string manipulationGeobert Quach2019-09-192-0/+331
| | | | Fixes #1730