aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists
Commit message (Collapse)AuthorAgeFilesLines
...
| * | fix generated docs issueJess Balint2020-05-222-23/+48
| | |
| * | 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-222-0/+125
| | | | | | | | | | | | (fixes #4523)
* | | Remove unnecessary clone that prevented clippy from moving onkjeremy2020-05-221-1/+1
| |/ |/|
* | KISS SourceChangeAleksey Kladov2020-05-221-5/+5
|/ | | | | | The idea behind requiring the label is a noble one, but we are not really using it consistently anyway, and it should be easy to retrofit later, should we need it.
* Remove dead code for handling cursor positionsAleksey Kladov2020-05-211-8/+1
|
* Remove unused cursor positionsAleksey Kladov2020-05-211-2/+1
|
* Remove set_cursorAleksey Kladov2020-05-202-31/+13
|
* Snippetify unwrap -> matchAleksey Kladov2020-05-202-13/+30
|
* More snippetsAleksey Kladov2020-05-203-23/+17
|
* More snippetsAleksey Kladov2020-05-206-97/+45
|
* Snippetify introduce/inline varAleksey Kladov2020-05-203-74/+87
|
* Relax cursor position tests in assistsAleksey Kladov2020-05-2014-117/+96
| | | | Those will be replaced with snippets anyway
* Snippetify fix_visibilityAleksey Kladov2020-05-202-31/+35
|
* Snippetify fill_match_armsAleksey Kladov2020-05-202-117/+78
|
* Don't set cursor in change_visibilityAleksey Kladov2020-05-201-6/+3
|
* Cleanup importsAleksey Kladov2020-05-201-4/+6
|
* Split change_ and fix_ visibility assistsAleksey Kladov2020-05-204-506/+581
|
* Switch to new magic marksAleksey Kladov2020-05-207-42/+29
|
* Significantly more glorious marksAleksey Kladov2020-05-202-8/+6
|
* Merge #4530bors[bot]2020-05-206-90/+83
|\ | | | | | | | | | | | | | | | | | | | | 4530: Use snippets in change_return_type_to_result r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Use snippets in change_return_type_to_resultAleksey Kladov2020-05-202-47/+36
| |
| * wipAleksey Kladov2020-05-201-4/+8
| |
| * CleanupAleksey Kladov2020-05-201-12/+10
| |
| * MinorAleksey Kladov2020-05-201-2/+1
| |
| * MinorAleksey Kladov2020-05-203-5/+10
| |
| * Snippetify add_newAleksey Kladov2020-05-202-30/+28
| |
* | Fix Some|None order in fill_match_armsAleksey Kladov2020-05-203-11/+69
|/
* Merge #4525bors[bot]2020-05-202-40/+48
|\ | | | | | | | | | | | | | | | | | | | | 4525: Better cursor placement when adding impl members r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Better cursor placement when adding impl membersAleksey Kladov2020-05-202-40/+48
| |
* | Merge #4524bors[bot]2020-05-205-43/+82
|\| | | | | | | | | | | | | | | | | | | | | 4524: Use snippets in add_missing_members r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Use snippets in add_missing_membersAleksey Kladov2020-05-205-43/+82
| |
| |
| \
*-. \ Merge #4521 #4522bors[bot]2020-05-206-70/+113
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4521: Use snippets in add_function r=matklad a=matklad bors r+ 🤖 4522: Explain the purpose of `ast::make` module more clearly r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| | * Explain the purpose of `ast::make` module more clearlyAleksey Kladov2020-05-201-1/+1
| |/ |/|
| * Moderate cleanup of add_functionAleksey Kladov2020-05-202-34/+54
| |
| * Use snippets in add functionAleksey Kladov2020-05-203-39/+66
| |
| * CleanupAleksey Kladov2020-05-201-5/+2
| |
| * CleanupAleksey Kladov2020-05-201-3/+2
|/
* New assist: add turbo fishAleksey Kladov2020-05-194-0/+157
|
* Server side of SnippetTextEditAleksey Kladov2020-05-191-10/+0
|
* Add snippet support for some assistsAleksey Kladov2020-05-194-56/+67
|
* Add AssistConfigAleksey Kladov2020-05-194-28/+103
|
* Merge #4273bors[bot]2020-05-141-1/+515
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4273: Trigger add_vis assist on paths/record fields as well r=flodiebold a=TimoFreiberg Resolves #4037. - [x] Function defs - [x] ADT defs - [x] Enum variants - [x] Consts - [x] Statics - [x] Traits - [x] Type aliases - [x] Modules - [x] Record fields (using different implementation) - [x] struct fields - [x] enum variant fields - :x: union fields (`Semantics::resolve_record_field` seems to not work for union fields, so I think this can be handled in a future PR) - [x] More tests? - [x] Improve test fixture code and documentation a bit (see [Zulip](https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0/topic/resolve_path.20between.20fixture.20files)) Co-authored-by: Timo Freiberg <[email protected]>
| * Trigger change_visibility assist when on an invisible struct fieldTimo Freiberg2020-05-101-61/+248
| | | | | | | | Union fields apparently don't work :(
| * Trigger change_visibility assist when on a path to an invisible defTimo Freiberg2020-05-101-1/+328
| |
* | Merge #4445bors[bot]2020-05-142-2/+72
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 4445: Correctly fill default type parameters r=flodiebold a=montekki Fixes #3877 So, basically even if the parameters are omitted from the `impl` block, check the parameters in `trait` if they have a default type, and if they do go from `hir` to `ast::TypeArg`. I've added a helper for that but I am not sure that it's a proper way to go from `hir` to `ast` here. Co-authored-by: Fedor Sakharov <[email protected]>
| * | Fix formattingFedor Sakharov2020-05-141-1/+1
| | |
| * | Change type_arg to type_ref funcFedor Sakharov2020-05-141-2/+1
| | |
| * | Use generic_defaults and display_source_codeFedor Sakharov2020-05-142-10/+12
| | |
| * | Correctly fill default type parametersFedor Sakharov2020-05-133-1/+70
| | |