aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists
Commit message (Collapse)AuthorAgeFilesLines
* Extract common parts of match arms in convert_to_guarded_return assist.krk2019-11-011-50/+37
|
* Support paths other than "Some".krk2019-11-011-8/+56
|
* Remove variable pat.krk2019-11-011-2/+1
|
* Handle IfLet in convert_to_guarded_return.krk2019-10-311-28/+155
|
* Some clippy fixeskjeremy2019-10-303-6/+4
|
* Don't add a space after the opening brace in autoimportFlorian Diebold2019-10-291-6/+6
|
* Fix autoimport not choosing the deepest use tree in some situationsFlorian Diebold2019-10-281-6/+37
|
* Merge #2099bors[bot]2019-10-271-4/+35
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2099: Fix panic on raw string assist r=matklad a=aee11 Strings that do not contain two quotation marks would cause a slice indexing panic because `find_usual_string_range` would return a range that only contained a single quotation mark. Panic example: ``` fn main() { let s = "<|> } ``` I noticed a lot of panics from the `make_raw_string` assist while working on another issue today. Co-authored-by: Alexander Elís Ebenesersson <[email protected]>
| * Fix panic on raw string assistAlexander Elís Ebenesersson2019-10-271-4/+35
| | | | | | | | | | | | | | | | Strings that do not contain two quotation marks would cause a slice indexing panic because code was assuming `find_usual_string_range` would return a string with two quotes, but it would incorrectly also return text ranges containing only a single quote.
* | further simplify assistsAleksey Kladov2019-10-272-82/+37
| |
* | move all assists to use generated docsAleksey Kladov2019-10-272-5/+31
| |
* | simplify AssistCtx APIAleksey Kladov2019-10-2722-160/+105
| | | | | | | | | | We never actually use ability to create multiple actions out of a single context
* | simplifyAleksey Kladov2019-10-271-30/+13
| |
* | Merge #2090bors[bot]2019-10-272-101/+101
|\ \ | | | | | | | | | | | | | | | | | | | | | 2090: move public stuff to top r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | move public stuff to topAleksey Kladov2019-10-271-26/+26
| | |
| * | rename auto_import -> add_importAleksey Kladov2019-10-272-75/+75
| |/ | | | | | | We are long way from auto imports at the moment
* | use new api for flip_trait_bound assistAleksey Kladov2019-10-273-12/+46
| |
* | Add tests for the trait bound flip assist.Wesley Norris2019-10-271-0/+76
| | | | | | | | Co-authored-by: vlthr <[email protected]>
* | Fixes #2054.Wesley Norris2019-10-272-0/+34
|/ | | | This adds the `flip_trait_bound` assist which allows for the swapping of two trait bounds in a trait list that are next to each other.
* document almost all assistsAleksey Kladov2019-10-275-9/+240
|
* lightly document assist_ctx moduleAleksey Kladov2019-10-271-1/+1
|
* use more consistent namingAleksey Kladov2019-10-2717-18/+18
| | | | | I think this is the first time I use global rename for rust-analyzer itself :-)
* extract assist helper for getting a specific tokenAleksey Kladov2019-10-274-15/+12
|
* raw string assists work in macrosAleksey Kladov2019-10-271-49/+58
|
* document some more assistsAleksey Kladov2019-10-274-6/+186
|
* use unicode bar for drawing the cursorAleksey Kladov2019-10-262-2/+2
|
* support range selection in assist docsAleksey Kladov2019-10-263-6/+37
|
* check style for assist docsAleksey Kladov2019-10-268-11/+106
|
* use correct spacing for enum patternAleksey Kladov2019-10-262-4/+4
|
* document a couple of assistsAleksey Kladov2019-10-263-2/+74
|
* add blank lines for readabilityAleksey Kladov2019-10-265-0/+10
|
* generate more assists docsAleksey Kladov2019-10-257-20/+262
|
* auto-generate assists docs and testsAleksey Kladov2019-10-254-24/+73
|
* xtask: move codegen to a moduleAleksey Kladov2019-10-231-2/+2
|
* 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
| |