aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/handlers
Commit message (Collapse)AuthorAgeFilesLines
* introduce_variable -> extract_variableAleksey Kladov2020-06-271-53/+53
|
* Merge #4945bors[bot]2020-06-261-2/+31
|\ | | | | | | | | | | | | | | 4945: do not suggest assist for return type to result in bad case r=matklad a=bnjjj close #4826 Co-authored-by: Benjamin Coenen <[email protected]>
| * do not suggest assist for return type to result in bad case #4826Benjamin Coenen2020-06-211-0/+3
| | | | | | | | Signed-off-by: Benjamin Coenen <[email protected]>
| * do not suggest assist for return type to result in bad case #4826Benjamin Coenen2020-06-181-2/+28
| | | | | | | | Signed-off-by: Benjamin Coenen <[email protected]>
* | Smarter introduce variableAleksey Kladov2020-06-251-8/+49
| | | | | | | | Use field init shorthand
* | Centralize fixture parsing for assistsAleksey Kladov2020-06-234-35/+40
| |
* | More principled indentation trimming in fixturesAleksey Kladov2020-06-233-123/+127
| |
* | Fix panic in split and merge import assistsLaurențiu Nicola2020-06-232-1/+21
| |
* | Remove RelativePathBuf from fixtureAleksey Kladov2020-06-223-3/+3
|/ | | | | The paths in fixture are not really relative (the default one is `/main.rs`), so it doesn't make sense to use `RelativePathBuf` here.
* Merge #4878bors[bot]2020-06-161-50/+230
|\ | | | | | | | | | | | | | | 4878: Make "Replace qualified name with use" replace *all* mentions of the path r=matklad a=jonas-schievink Fixes https://github.com/rust-analyzer/rust-analyzer/issues/4836 Co-authored-by: Jonas Schievink <[email protected]>
| * Operate only on AST paths instead of HIRJonas Schievink2020-06-151-30/+36
| |
| * SimplifyJonas Schievink2020-06-151-13/+6
| |
| * It's fookin' rawJonas Schievink2020-06-151-48/+48
| |
| * Shorten *all* qualified paths when adding useJonas Schievink2020-06-131-10/+191
| |
* | fill_match_arms bind pattern implementationToby Dimmick2020-06-141-2/+14
| |
* | fill_match_arms bind pattern testToby Dimmick2020-06-141-0/+34
|/
* Respect casing when searching for importsJonas Schievink2020-06-101-0/+25
|
* Add test for macro generated itemsJonas Schievink2020-06-101-0/+31
|
* ImportsLocator: use ImportMap for non-local cratesJonas Schievink2020-06-101-1/+46
|
* Use correct indent when replacing with matchAleksey Kladov2020-06-092-3/+36
|
* Unwrap block works with match armsAleksey Kladov2020-06-091-4/+40
|
* Simplify unwrapping of blocksAleksey Kladov2020-06-091-79/+49
|
* Simplify APIAleksey Kladov2020-06-083-35/+29
|
* Merge #4576bors[bot]2020-06-081-0/+326
|\ | | | | | | | | | | | | | | | | | | 4576: Add implementation of extract struct from enum variant r=matklad a=mcrakhman Hi guys! I implemented the extraction functionality including modifying multiple files. The only thing I didn't change the cursor position. I've done it with a previous API, but now snippets have been introduced and I need to figure out how to do it. Please bear in mind that I am a newcomer in the rust-analyzer (and also Rust) world, so I tried to implement the feature to the best of my knowledge, but the API is very new to me, so I am very welcome to introducing changes etc. Co-authored-by: Mikhail Rakhmanov <[email protected]>
| * Fix review commentsMikhail Rakhmanov2020-06-051-23/+18
| |
| * Remove unnecessary returnMikhail Rakhmanov2020-06-051-2/+2
| |
| * Remove AsName importMikhail Rakhmanov2020-06-041-4/+9
| |
| * Fixed testsMikhail Rakhmanov2020-06-031-9/+12
| |
| * Merge branch 'master' into assists_extract_enumMikhail Rakhmanov2020-06-033-3/+306
| |\
| * | Further refactoring under review commentsMikhail Rakhmanov2020-05-241-7/+3
| | |
| * | Remove unnecessary set_file and change variable positions for better readabilityMikhail Rakhmanov2020-05-231-2/+1
| | |
| * | Remove unwraps where possibleMikhail Rakhmanov2020-05-231-22/+11
| | |
| * | Further review fixesMikhail Rakhmanov2020-05-231-11/+9
| | |
| * | Better naming and fix some review commentsMikhail Rakhmanov2020-05-231-8/+8
| | |
| * | Formatting and remove unused importsMikhail Rakhmanov2020-05-221-2/+5
| | |
| * | Add preliminary implementation of extract struct from enum variantMikhail Rakhmanov2020-05-221-0/+338
| | |
* | | Fix type parameter defaultsFlorian Diebold2020-06-051-2/+2
| | | | | | | | | | | | | | | They should not be applied in expression or pattern contexts, unless there are other explicitly given type args.
* | | introduce_named_lifetime assist wasn't applicable when type parameterJess Balint2020-06-041-2/+17
| |/ |/| | | | | | | | | followed anonymous lifetime token (fixes #4684)
* | Rename assistAleksey Kladov2020-06-011-25/+22
| |
* | Cleanup importsAleksey Kladov2020-06-011-6/+9
| |
* | Merge #4664bors[bot]2020-05-311-2/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | 4664: Generate feature documentation from code r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | Don't require module docs for Features and AssistsAleksey Kladov2020-05-311-2/+2
| | |
* | | Merge #4562bors[bot]2020-05-301-0/+303
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | 4562: Assist: replace anonymous lifetime with a named one r=matklad a=jbalint (fixes #4523) Co-authored-by: Jess Balint <[email protected]>
| * | add support for naming anon lifetimes in function return typeJess Balint2020-05-281-50/+210
| | |
| * | tweak syntaxJess Balint2020-05-231-49/+40
| | |
| * | use char rangeJess Balint2020-05-221-2/+2
| | |
| * | fix generated docs issueJess Balint2020-05-221-23/+23
| | |
| * | handle the case of conflicting lifetime param nameJess Balint2020-05-221-7/+36
| | | | | | | | | | | | - and clean/format code
| * | Assist: replace anonymous lifetime with a named oneJess Balint2020-05-221-0/+123
| |/ | | | | | | (fixes #4523)
* / Remove unnecessary clone that prevented clippy from moving onkjeremy2020-05-221-1/+1
|/