aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/handlers
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary clone that prevented clippy from moving onkjeremy2020-05-221-1/+1
|
* Remove set_cursorAleksey Kladov2020-05-201-14/+10
|
* Snippetify unwrap -> matchAleksey Kladov2020-05-201-12/+29
|
* More snippetsAleksey Kladov2020-05-203-23/+17
|
* More snippetsAleksey Kladov2020-05-206-97/+45
|
* Snippetify introduce/inline varAleksey Kladov2020-05-202-73/+86
|
* Relax cursor position tests in assistsAleksey Kladov2020-05-2013-105/+93
| | | | Those will be replaced with snippets anyway
* Snippetify fix_visibilityAleksey Kladov2020-05-201-30/+34
|
* Snippetify fill_match_armsAleksey Kladov2020-05-201-116/+77
|
* 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-202-506/+556
|
* Switch to new magic marksAleksey Kladov2020-05-205-28/+29
|
* Significantly more glorious marksAleksey Kladov2020-05-201-6/+6
|
* Merge #4530bors[bot]2020-05-204-85/+78
|\ | | | | | | | | | | | | | | | | | | | | 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-201-46/+35
| |
| * wipAleksey Kladov2020-05-201-4/+8
| |
| * CleanupAleksey Kladov2020-05-201-12/+10
| |
| * MinorAleksey Kladov2020-05-201-2/+1
| |
| * MinorAleksey Kladov2020-05-202-2/+7
| |
| * Snippetify add_newAleksey Kladov2020-05-201-29/+27
| |
* | Fix Some|None order in fill_match_armsAleksey Kladov2020-05-201-4/+40
|/
* Merge #4525bors[bot]2020-05-201-38/+46
|\ | | | | | | | | | | | | | | | | | | | | 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-201-38/+46
| |
* | Merge #4524bors[bot]2020-05-202-29/+45
|\| | | | | | | | | | | | | | | | | | | | | 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-202-29/+45
| |
| |
| \
*-. \ Merge #4521 #4522bors[bot]2020-05-204-67/+84
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-201-33/+47
| |
| * Use snippets in add functionAleksey Kladov2020-05-201-36/+43
| |
| * CleanupAleksey Kladov2020-05-201-5/+2
| |
| * CleanupAleksey Kladov2020-05-201-3/+2
|/
* New assist: add turbo fishAleksey Kladov2020-05-191-0/+134
|
* Add snippet support for some assistsAleksey Kladov2020-05-193-51/+62
|
* 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-141-0/+50
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 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]>
| * | Correctly fill default type parametersFedor Sakharov2020-05-131-0/+50
| | |
* | | Use back ticks instead of single quotes around codeTrevor Spiteri2020-05-142-2/+2
|/ /
| |
| \
| \
| \
*---. \ Merge #4406 #4410 #4411 #4417bors[bot]2020-05-102-29/+194
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4406: Update cargo-metadata r=matklad a=edwin0cheng This PR update `cargo-metadata` to 0.10.0 and it also relax the` serde-derive` deps to 1.0 for tests in `proc-macro-srv`. cc @robojumper r= @matklad , I think you would have something to say related to https://github.com/serde-rs/json/issues/647#issue-593788429 ? 4410: Improve wording in comment r=matklad a=edwin0cheng 4411: do not remove then block when you unwrap else block #4361 r=matklad a=bnjjj close #4361 4417: Omit default types in HirDisplay SourceCode mode r=matklad a=TimoFreiberg Closes #4390 Co-authored-by: Edwin Cheng <[email protected]> Co-authored-by: Benjamin Coenen <[email protected]> Co-authored-by: Timo Freiberg <[email protected]>
| | | * Omit default types in HirDisplay SourceCode modeTimo Freiberg2020-05-101-1/+1
| |_|/ |/| |
| | * do not remove then block when you unwrap else block #4361Benjamin Coenen2020-05-101-28/+193
| |/ |/| | | | | Signed-off-by: Benjamin Coenen <[email protected]>
* | Merge #4392bors[bot]2020-05-091-14/+11
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4392: Add From should not move the cursor r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | Add From should not move the cursorAleksey Kladov2020-05-091-14/+11
| | |
* | | Ascribe more correct typesAleksey Kladov2020-05-091-9/+10
|/ /
* | unindent -> dedentAleksey Kladov2020-05-091-1/+1
| |
* | More fluent indent APIAleksey Kladov2020-05-096-21/+32
| |
* | Use new HirDisplay variant in add_function assistTimo Freiberg2020-05-081-58/+116
|/
* SimplifyAleksey Kladov2020-05-074-4/+4
|