Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | Never disable error logging on the frontend | Veetaha | 2020-06-22 | 1 | -1/+0 | |
|/ / / | ||||||
* / / | Hotfix skipping the first chunks of the artifacts | Veetaha | 2020-06-22 | 1 | -6/+7 | |
|/ / | ||||||
* | | Download artifacts into tmp dir | Veetaha | 2020-06-20 | 2 | -11/+60 | |
| | | ||||||
* | | Update workaround comment | Veetaha | 2020-06-19 | 1 | -3/+2 | |
| | | ||||||
* | | Add `rust-analyzer.gotoLocation` command | vsrs | 2020-06-18 | 3 | -0/+18 | |
| | | ||||||
* | | Fix rust-analyzer.debug.openDebugPane option | vsrs | 2020-06-18 | 2 | -2/+2 | |
|/ | ||||||
* | Fix Run lens. | vsrs | 2020-06-06 | 1 | -1/+1 | |
| | ||||||
* | Remove hover contents marking as trusted. | vsrs | 2020-06-05 | 1 | -15/+2 | |
| | | | | | Hover contents might be extracted from raw doc comments and need some validation. | |||||
* | Add hover actions LSP extension documentation. | vsrs | 2020-06-05 | 1 | -1/+1 | |
| | ||||||
* | Add hover actions as LSP extension | vsrs | 2020-06-05 | 3 | -4/+66 | |
| | ||||||
* | Fix review comments | Mikhail Rakhmanov | 2020-06-03 | 2 | -3/+0 | |
| | ||||||
* | Merge remote-tracking branch 'upstream/master' into compute-lazy-assits | Mikhail Rakhmanov | 2020-06-02 | 3 | -21/+29 | |
|\ | | | | | | | | | # Conflicts: # crates/rust-analyzer/src/to_proto.rs | |||||
| * | Spec better runnables | Aleksey Kladov | 2020-06-02 | 1 | -1/+1 | |
| | | ||||||
| * | New runnables API | Aleksey Kladov | 2020-06-02 | 3 | -20/+28 | |
| | | ||||||
* | | Preliminary implementation of lazy CodeAssits | Mikhail Rakhmanov | 2020-06-02 | 4 | -38/+65 | |
|/ | ||||||
* | Move run commands to commands.ts | Aleksey Kladov | 2020-06-02 | 3 | -133/+134 | |
| | ||||||
* | Merge #4580 | bors[bot] | 2020-06-02 | 6 | -52/+100 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | 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.kind | veetaha | 2020-05-31 | 6 | -52/+97 | |
| | | | | | | | | | | | | 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 invoking cargo without consulting CARGO or standard installation paths | veetaha | 2020-05-31 | 2 | -4/+7 | |
| | | ||||||
* | | Always derive from `process.env` when spawning a child process/shell execution | Alin Sinpalean | 2020-05-31 | 1 | -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. | |||||
* | Add `inRustProject` when-clause for commands. | vsrs | 2020-05-27 | 2 | -0/+11 | |
| | ||||||
* | Partially fix displaying inlay hints in Github PR diff views | veetaha | 2020-05-26 | 1 | -4/+5 | |
| | ||||||
* | Document `parentModule` experimental LSP request | Aleksey Kladov | 2020-05-25 | 2 | -4/+4 | |
| | ||||||
* | Cleanup lsp extensions on the client side | Aleksey Kladov | 2020-05-25 | 6 | -127/+88 | |
| | ||||||
* | Less rust-analyzer specific onEnter | Aleksey Kladov | 2020-05-25 | 3 | -7/+9 | |
| | ||||||
* | Flatten commands.ts | Aleksey Kladov | 2020-05-25 | 4 | -109/+103 | |
| | ||||||
* | Flatten simple commands | Aleksey Kladov | 2020-05-25 | 10 | -301/+242 | |
| | ||||||
* | Remove dead code | Aleksey Kladov | 2020-05-25 | 4 | -106/+54 | |
| | ||||||
* | Introduce `toggle inlay hints` vscode command | veetaha | 2020-05-25 | 4 | -1/+14 | |
| | | | | | | | | Users now can assign a shortcut for this command via the general vscode keybindings ui or `keybinding.json file` Closes: #4599 | |||||
* | Document matchingBrace LSP request | Aleksey Kladov | 2020-05-24 | 2 | -6/+5 | |
| | ||||||
* | Merge pull request #4538 from vsrs/vscode_tests | Aleksey Kladov | 2020-05-23 | 1 | -23/+34 | |
|\ | | | | | vscode client side tests | |||||
| * | Apply suggestions from @Veetaha code review | vsrs | 2020-05-21 | 1 | -10/+4 | |
| | | ||||||
| * | vscode client side tests | vsrs | 2020-05-20 | 1 | -23/+40 | |
| | | ||||||
* | | Merge #4555 #4575 | bors[bot] | 2020-05-23 | 1 | -1/+48 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4555: VSCode: added patchelf after download for NixOS support r=matklad a=cab404 This adds Nix support, and fixes #4542 4575: Use Chalk's built-in representations for fn items and pointers r=matklad a=flodiebold The `TypeName::FnDef` was just added; the function pointer variant has existed for a while, I just forgot about it because it's special (because fn pointers can be higher-ranked over lifetimes). We *could* also make `FnPtr` a separate `Ty` variant instead of a `TypeCtor` variant, which would make the conversion code a bit less special-casey, but it doesn't seem worth doing right now. Co-authored-by: Vladimir Serov <[email protected]> Co-authored-by: Cabia Rangris <[email protected]> Co-authored-by: Florian Diebold <[email protected]> | |||||
| * \ | Merge branch 'nix-patchelf' of github.com:cab404/rust-analyzer into nix-patchelf | Vladimir Serov | 2020-05-21 | 1 | -1/+1 | |
| |\ \ | ||||||
| | * | | Update editors/code/src/main.ts | Cabia Rangris | 2020-05-21 | 1 | -1/+1 | |
| | | | | | | | | | | | | Co-authored-by: Jeremy Kolb <[email protected]> | |||||
| * | | | editors/vscode: forgotten await in os check | Vladimir Serov | 2020-05-21 | 1 | -1/+1 | |
| | | | | ||||||
| * | | | editors/vscode: patchelf-ing without intermediate files | Vladimir Serov | 2020-05-21 | 1 | -5/+5 | |
| |/ / | ||||||
| * | | editor/vscode: lint | Vladimir Serov | 2020-05-21 | 1 | -21/+21 | |
| | | | ||||||
| * | | editors/vscode: removing original file after patching | Vladimir Serov | 2020-05-21 | 1 | -1/+1 | |
| | | | ||||||
| * | | editors/vscode: added patchelf after download | Vladimir Serov | 2020-05-21 | 1 | -1/+48 | |
| |/ | ||||||
* | | CodeAction groups | Aleksey Kladov | 2020-05-22 | 3 | -14/+43 | |
| | | ||||||
* | | Use WorkspaceEdit for ssr | Aleksey Kladov | 2020-05-21 | 2 | -5/+3 | |
| | | ||||||
* | | Formalize JoinLines protocol extension | Aleksey Kladov | 2020-05-21 | 2 | -6/+10 | |
| | | ||||||
* | | Transition OnEnter to WorkspaceSnippetEdit | Aleksey Kladov | 2020-05-21 | 4 | -31/+53 | |
|/ | | | | | | | | This also changes our handiling of snippet edits on the client side. `editor.insertSnippet` unfortunately forces indentation, which we really don't want to have to deal with. So, let's just implement our manual hacky way of dealing with a simple subset of snippets we actually use in rust-analyzer | |||||
* | Debug lens fix for a binary. | vsrs | 2020-05-20 | 1 | -4/+8 | |
| | ||||||
* | Fix client-side snippets | Aleksey Kladov | 2020-05-19 | 1 | -1/+2 | |
| | ||||||
* | Implement client-side of SnippetTextEdit | Aleksey Kladov | 2020-05-19 | 3 | -2/+81 | |
| | ||||||
* | Add snippetTextEdit protocol extension | Aleksey Kladov | 2020-05-19 | 1 | -4/+15 | |
| | ||||||
* | Add "rust-analyzer.lens.enable" | vsrs | 2020-05-18 | 1 | -0/+2 | |
| |