aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* Fix review commentsMikhail Rakhmanov2020-06-033-38/+24
|
* Merge remote-tracking branch 'upstream/master' into compute-lazy-assitsMikhail Rakhmanov2020-06-0210-284/+471
|\ | | | | | | | | # Conflicts: # crates/rust-analyzer/src/to_proto.rs
| * Merge #4710bors[bot]2020-06-027-168/+354
| |\ | | | | | | | | | | | | | | | | | | | | | 4710: New runnables r=matklad a=matklad bors d=@vsrs Co-authored-by: Aleksey Kladov <[email protected]>
| | * Fix testsAleksey Kladov2020-06-023-69/+270
| | |
| | * Spec better runnablesAleksey Kladov2020-06-022-1/+4
| | |
| | * New runnables APIAleksey Kladov2020-06-025-98/+80
| | |
| * | Merge #4711bors[bot]2020-06-022-2/+2
| |\ \ | | |/ | |/| | | | | | | | | | | | | | | | 4711: Disable rust-analyzer.{cargo,checkOnSave}.allFeatures by default r=matklad a=lnicola Co-authored-by: LaurenČ›iu Nicola <[email protected]>
| | * Disable rust-analyzer.{cargo,checkOnSave}.allFeatures by defaultLaurențiu Nicola2020-06-022-2/+2
| | |
| * | MinorAleksey Kladov2020-06-023-124/+125
| | |
* | | Preliminary implementation of lazy CodeAssitsMikhail Rakhmanov2020-06-029-47/+150
|/ /
* | Merge #4658bors[bot]2020-06-023-5/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 4658: Fix problem with format string tokenization r=matklad a=ruabmbua Fixed by just not handling closing curlybrace escaping. Closes https://github.com/rust-analyzer/rust-analyzer/issues/4637 Co-authored-by: Roland Ruckerbauer <[email protected]>
| * | Test case for format string highlighting of closing curlybraceRoland Ruckerbauer2020-05-302-0/+2
| | |
| * | Fix problem with format string tokenizationRoland Ruckerbauer2020-05-301-5/+0
| | | | | | | | | | | | Fixed by just not handling closing curlybrace escaping.
* | | Merge #4580bors[bot]2020-06-025-11/+21
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4580: Fix invoking cargo without consulting CARGO env var or standard installation paths r=matklad a=Veetaha Followup for #4329 The pr essentially fixes [this bug](https://youtu.be/EzQ7YIIo1rY?t=2189) cc @lefticus Co-authored-by: veetaha <[email protected]>
| * | Change Runnable.bin -> Runnable.kindveetaha2020-05-314-22/+18
| | | | | | | | | | | | | | | | | | As per matklad, we now pass the responsibility for finding the binary to the frontend. Also, added caching for finding the binary path to reduce the amount of filesystem interactions.
| * | Fix tests, apply code review proposalsveetaha2020-05-314-14/+21
| | |
| * | Fix invoking cargo without consulting CARGO or standard installation pathsveetaha2020-05-312-1/+8
| |/
* | Simplifyveetaha2020-06-021-1/+1
| |
* | Rename assistAleksey Kladov2020-06-013-52/+49
| |
* | Cleanup importsAleksey Kladov2020-06-011-6/+9
| |
* | Small refactorveetaha2020-05-311-2/+2
| |
* | add testBrennan Vincent2020-05-311-0/+27
| |
* | recursively search submodulesBrennan Vincent2020-05-311-18/+22
| |
* | Merge #4667bors[bot]2020-05-318-36/+171
|\ \ | | | | | | | | | | | | | | | | | | | | | 4667: Infer labelled breaks correctly r=flodiebold a=robojumper Fixes #4663. Co-authored-by: robojumper <[email protected]>
| * | fmtrobojumper2020-05-312-11/+21
| | |
| * | correctly infer labelled breaksrobojumper2020-05-318-45/+116
| | |
| * | labelled break testrobojumper2020-05-311-0/+54
| |/
* | Merge #4664bors[bot]2020-05-3123-177/+405
|\ \ | |/ |/| | | | | | | | | | | 4664: Generate feature documentation from code r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Move the rest of the features to generated docsAleksey Kladov2020-05-316-142/+212
| |
| * Doc more featuresAleksey Kladov2020-05-313-6/+40
| |
| * Don't require module docs for Features and AssistsAleksey Kladov2020-05-3112-27/+62
| |
| * Specify actionsAleksey Kladov2020-05-314-3/+20
| |
| * Generate features docs from sourceAleksey Kladov2020-05-318-2/+74
| |
* | Merge #4654bors[bot]2020-05-303-0/+4
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4654: Add semantic highlight to ? operator r=matklad a=ruabmbua Made it an operator with controlFlow modifier. To highlight in vscode as red: ```json "editor.semanticTokenColorCustomizations": { "enabled": true, "rules": { "operator.controlFlow": "#ff0000", } } ``` ![Bildschirmfoto von 2020-05-29 21-32-06](https://user-images.githubusercontent.com/2522373/83297998-f3585a00-a1f3-11ea-9d14-4ef04b9b6b9a.png) https://github.com/rust-analyzer/rust-analyzer/issues/4597 Co-authored-by: Roland Ruckerbauer <[email protected]>
| * | Add semantic highlight to QUESTION tokenRoland Ruckerbauer2020-05-293-0/+4
| | | | | | | | | | | | Made it an operator with controlFlow modifier.
* | | Merge #4562bors[bot]2020-05-303-0/+330
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-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)
* | | | Merge #4653bors[bot]2020-05-302-5/+61
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | 4653: Fix match ergonomics in closure parameters r=matklad a=flodiebold Fixes #4476. Co-authored-by: Florian Diebold <[email protected]>
| * | | Fix match ergonomics in closure parametersFlorian Diebold2020-05-292-5/+61
| | |/ | |/| | | | | | | Fixes #4476.
* | | Merge #4651bors[bot]2020-05-292-4/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4651: Use first match branch in case of type mismatch, not last r=kjeremy a=flodiebold The comment says this was intentional, but I do agree with #4304 that it makes more sense the other way around (for if/else as well). Fixes #4304. Co-authored-by: Florian Diebold <[email protected]>
| * | | Use first match branch in case of type mismatch, not lastFlorian Diebold2020-05-292-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The comment says this was intentional, but I do agree with #4304 that it makes more sense the other way around (for if/else as well). Fixes #4304.
* | | | Merge #4652bors[bot]2020-05-292-7/+51
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | 4652: Upgrade Chalk r=kjeremy a=flodiebold Fixes #4072. Co-authored-by: Florian Diebold <[email protected]>
| * | | Upgrade ChalkFlorian Diebold2020-05-292-7/+51
| |/ / | | | | | | | | | Fixes #4072.
* / / Support raw_ref_op's raw reference operatorrobojumper2020-05-2811-71/+256
|/ /
* | Merge #4641bors[bot]2020-05-284-55/+54
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 4641: Upgrade Chalk r=matklad a=flodiebold Chalk newly added TypeName::Never and Array; I implemented the conversion for Never, but not Array since that expects a const argument. Co-authored-by: Florian Diebold <[email protected]>