aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | Fix problem with format string tokenizationRoland Ruckerbauer2020-05-301-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed by just not handling closing curlybrace escaping.
* | | | | | | Merge #4580bors[bot]2020-06-0214-71/+130
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-3113-83/+123
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-315-14/+22
| | | | | | |
| * | | | | | Fix invoking cargo without consulting CARGO or standard installation pathsveetaha2020-05-315-5/+16
| | | | | | |
* | | | | | | Merge #4701bors[bot]2020-06-021-1/+1
|\ \ \ \ \ \ \ | | |_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4701: Simplify r=kjeremy a=Veetaha Co-authored-by: veetaha <[email protected]>
| * | | | | | Simplifyveetaha2020-06-021-1/+1
|/ / / / / /
* | | | | | Merge #4688bors[bot]2020-06-011-0/+10
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4688: Document initilizationOptions used by rust-analyzer r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | | Subscribe to protocol changesAleksey Kladov2020-06-011-0/+2
| | | | | | |
| * | | | | | Document initilizationOptions used by rust-analyzerAleksey Kladov2020-06-011-0/+8
| | | | | | |
* | | | | | | Merge #4686bors[bot]2020-06-011-72/+0
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4686: Drop unused document r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | | Drop unused documentAleksey Kladov2020-06-011-72/+0
|/ / / / / /
* | | | | | Merge #4682bors[bot]2020-06-014-87/+87
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4682: Rename assist r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | | Rename assistAleksey Kladov2020-06-014-81/+78
| | | | | | |
| * | | | | | Cleanup importsAleksey Kladov2020-06-011-6/+9
|/ / / / / /
* | | | | | Merge #4675bors[bot]2020-05-311-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4675: Small refactor r=kiljacken a=Veetaha Co-authored-by: veetaha <[email protected]>
| * | | | | | Small refactorveetaha2020-05-311-2/+2
|/ / / / / /
* | | | | | Merge #4674bors[bot]2020-05-312-18/+49
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4674: Recursively search submodules to find modules in which a definition is visible. r=matklad a=umanwizard Co-authored-by: Brennan Vincent <[email protected]>
| * | | | | | add testBrennan Vincent2020-05-311-0/+27
| | | | | | |
| * | | | | | recursively search submodulesBrennan Vincent2020-05-311-18/+22
| | | | | | |
* | | | | | | Merge #4669bors[bot]2020-05-311-1/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4669: Always derive from `process.env` when spawning a child process/shell execution r=matklad a=Dfinity-Alin This is useful when an extension (e.g. [Nix Environment Selector](https://marketplace.visualstudio.com/items?itemName=arrterian.nix-env-selector)) or [launch configuration](https://stackoverflow.com/questions/57641460/set-env-var-for-node-js-when-launching-through-vs-code) sets one or more environment variables. When `env` is not explicitly specified in the options passed to `child_process.spawn()` or `vscode.ShellExecution()`, then `process.env` gets applied automatically. But when an explicit `env` is set, it should inherit from `process.env` rather than replace it completely. Co-authored-by: Alin Sinpalean <[email protected]>
| * | | | | | Always derive from `process.env` when spawning a child process/shell executionAlin Sinpalean2020-05-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is useful when an extension (e.g. Nix Environment Selector) or launch configuration sets one or more environment variables. When `env` is not explicitly specified in the options passed to `child_process.spawn()` or `vscode.ShellExecution()`, then `process.env` gets applied automatically. But when an explicit `env` is set, it should inherit from `process.env` rather than replace it completely.
* | | | | | | Merge #4673bors[bot]2020-05-311-18/+18
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4673: Update deps r=kjeremy a=kjeremy Co-authored-by: Jeremy Kolb <[email protected]>
| * | | | | | | Update depsJeremy Kolb2020-05-311-18/+18
|/ / / / / / /
* | | | | | | Merge #4672bors[bot]2020-05-315-36/+90
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4672: Link docs and code r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | | | Link to the specific source lineAleksey Kladov2020-05-315-36/+90
| | | | | | | |
* | | | | | | | Merge #4671bors[bot]2020-05-311-18/+17
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4671: docs r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | | | docsAleksey Kladov2020-05-311-18/+17
| | | | | | | |
* | | | | | | | Merge #4670bors[bot]2020-05-316-189/+366
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4670: Move assists documentation into the manual r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | | | Move assists documentation into the manualAleksey Kladov2020-05-316-189/+366
| | | | | | | |
* | | | | | | | Merge #4667bors[bot]2020-05-319-37/+172
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-319-46/+117
| | | | | | | | |
| * | | | | | | | labelled break testrobojumper2020-05-311-0/+54
| | |_|/ / / / / | |/| | | | | |
* | | | | | | | Merge #4668bors[bot]2020-05-312-2/+6
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| / / / / / | |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4668: Rename user/readme.adoc -> user/manual.adoc r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | | Rename user/readme.adoc -> user/manual.adocAleksey Kladov2020-05-312-2/+6
|/ / / / / /
* | | | | | Merge #4664bors[bot]2020-05-3133-412/+859
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4664: Generate feature documentation from code r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | Force / slashes on windowsAleksey Kladov2020-05-311-2/+3
| | | | | |
| * | | | | Tweak whitespaceAleksey Kladov2020-05-312-21/+2
| | | | | |
| * | | | | Move the rest of the features to generated docsAleksey Kladov2020-05-3110-240/+358
| | | | | |
| * | | | | Doc more featuresAleksey Kladov2020-05-315-54/+47
| | | | | |
| * | | | | Don't require module docs for Features and AssistsAleksey Kladov2020-05-3116-45/+140
| | | | | |
| * | | | | Specify actionsAleksey Kladov2020-05-317-17/+64
| | | | | |
| * | | | | Ignore HTMLAleksey Kladov2020-05-311-1/+1
| | | | | |
| * | | | | SimplifyAleksey Kladov2020-05-311-1/+1
| | | | | |
| * | | | | Generate features docs from sourceAleksey Kladov2020-05-3115-58/+258
| | | | | |
| * | | | | GeneralizeAleksey Kladov2020-05-302-9/+21
| | | | | |
* | | | | | Merge #4662bors[bot]2020-05-301-71/+73
|\| | | | | | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4662: minor r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | minorAleksey Kladov2020-05-301-71/+73
| | | | |
* | | | | 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]>