| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-06-18 | Migrate flycheck to fully-lsp-compatible progress reports (introduce ↵ | veetaha | -103/+0 | |
| ra_progress crate) | ||||
| 2020-06-18 | Add `rust-analyzer.gotoLocation` command | vsrs | -0/+23 | |
| 2020-06-18 | Fix rust-analyzer.debug.openDebugPane option | vsrs | -2/+2 | |
| 2020-06-17 | Warnings as hint or info | Gabriel Valfridsson | -0/+18 | |
| 2020-06-10 | checkOnSafe.features and checkOnSafe.allFeatures now work identically. | Clemens Wasser | -2/+5 | |
| 2020-06-10 | Most of the checkOnSafe options now default to the cargo equivalent. | Clemens Wasser | -4/+7 | |
| 2020-06-10 | Added the rust-analyzer.checkOnSave.features option. | Clemens Wasser | -0/+8 | |
| 2020-06-08 | Merge #4773 | bors[bot] | -0/+10 | |
| 4773: Run|Debug hover actions. r=matklad a=vsrs  This hover actions work exactly like corresponding lenses. Co-authored-by: vsrs <vit@conrlab.com> | ||||
| 2020-06-07 | Fix VSCode settings | Vincent Isambart | -4/+1 | |
| 2020-06-06 | Add Run|Debug hover actions | vsrs | -0/+10 | |
| 2020-06-06 | Fix Run lens. | vsrs | -1/+1 | |
| 2020-06-05 | Remove hover contents marking as trusted. | vsrs | -15/+2 | |
| Hover contents might be extracted from raw doc comments and need some validation. | ||||
| 2020-06-05 | Add hover actions LSP extension documentation. | vsrs | -1/+1 | |
| 2020-06-05 | Add hover actions as LSP extension | vsrs | -7/+79 | |
| 2020-06-03 | Merge branch 'master' into compute-lazy-assits | Mikhail Rakhmanov | -0/+19 | |
| # Conflicts: # crates/rust-analyzer/src/main_loop/handlers.rs # crates/rust-analyzer/src/to_proto.rs | ||||
| 2020-06-03 | Fix review comments | Mikhail Rakhmanov | -3/+0 | |
| 2020-06-03 | Document rust-project.json | Aleksey Kladov | -0/+19 | |
| 2020-06-02 | Merge remote-tracking branch 'upstream/master' into compute-lazy-assits | Mikhail Rakhmanov | -23/+31 | |
| # Conflicts: # crates/rust-analyzer/src/to_proto.rs | ||||
| 2020-06-02 | Preliminary implementation of lazy CodeAssits | Mikhail Rakhmanov | -38/+65 | |
| 2020-06-02 | Merge #4710 | bors[bot] | -21/+29 | |
| 4710: New runnables r=matklad a=matklad bors d=@vsrs Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com> | ||||
| 2020-06-02 | Merge #4711 | bors[bot] | -2/+2 | |
| 4711: Disable rust-analyzer.{cargo,checkOnSave}.allFeatures by default r=matklad a=lnicola Co-authored-by: Laurențiu Nicola <lnicola@dend.ro> | ||||
| 2020-06-02 | Disable rust-analyzer.{cargo,checkOnSave}.allFeatures by default | Laurențiu Nicola | -2/+2 | |
| 2020-06-02 | Spec better runnables | Aleksey Kladov | -1/+1 | |
| 2020-06-02 | New runnables API | Aleksey Kladov | -20/+28 | |
| 2020-06-02 | Move run commands to commands.ts | Aleksey Kladov | -133/+134 | |
| 2020-06-02 | Merge #4580 | bors[bot] | -59/+107 | |
| 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 <veetaha2@gmail.com> | ||||
| 2020-05-31 | Always derive from `process.env` when spawning a child process/shell execution | Alin Sinpalean | -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. | ||||
| 2020-05-31 | Change Runnable.bin -> Runnable.kind | veetaha | -59/+104 | |
| 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. | ||||
| 2020-05-31 | Fix invoking cargo without consulting CARGO or standard installation paths | veetaha | -4/+7 | |
| 2020-05-27 | Add `inRustProject` when-clause for commands. | vsrs | -1/+76 | |
| 2020-05-27 | Merge #4625 #4629 | bors[bot] | -4/+5 | |
| 4625: Partially fix displaying inlay hints in Github PR diff views r=matklad a=Veetaha See the comment in https://github.com/rust-analyzer/rust-analyzer/issues/4608#issuecomment-63424257 It partially fixes the left side of diff view (the one where old code is displayed), but the diff editor with new code changes still has `file` scheme and will proceed displaying inlay hints... 4629: Fix the `should_panic` snippet r=matklad a=eminence Closes #4628 Co-authored-by: veetaha <veetaha2@gmail.com> Co-authored-by: Andrew Chin <achin@eminence32.net> | ||||
| 2020-05-26 | Partially fix displaying inlay hints in Github PR diff views | veetaha | -4/+5 | |
| 2020-05-26 | Add question mark operator | Yuki Kodama | -1/+1 | |
| 2020-05-25 | Merge #4602 #4603 | bors[bot] | -0/+10 | |
| 4602: Add boolean literal semantic token type to package.json r=matklad a=lnicola Closes #4583. CC @GrayJack 4603: Add self keyword semantic token type r=matklad a=lnicola Not sure if this is warranted a new token type or just a modifier. --- CC #4583, @GrayJack Co-authored-by: Laurențiu Nicola <lnicola@dend.ro> | ||||
| 2020-05-25 | Document `parentModule` experimental LSP request | Aleksey Kladov | -4/+4 | |
| 2020-05-25 | Cleanup lsp extensions on the client side | Aleksey Kladov | -127/+88 | |
| 2020-05-25 | Less rust-analyzer specific onEnter | Aleksey Kladov | -7/+9 | |
| 2020-05-25 | Flatten commands.ts | Aleksey Kladov | -109/+103 | |
| 2020-05-25 | Flatten simple commands | Aleksey Kladov | -301/+242 | |
| 2020-05-25 | Add self keyword semantic token type | Laurențiu Nicola | -0/+5 | |
| 2020-05-25 | Remove dead code | Aleksey Kladov | -106/+54 | |
| 2020-05-25 | Add boolean literals to package.json | Laurențiu Nicola | -0/+5 | |
| 2020-05-25 | Introduce `toggle inlay hints` vscode command | veetaha | -1/+19 | |
| Users now can assign a shortcut for this command via the general vscode keybindings ui or `keybinding.json file` Closes: #4599 | ||||
| 2020-05-24 | Merge #4593 | bors[bot] | -6/+5 | |
| 4593: Document some rust-analyzer specific protocol extensions r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com> | ||||
| 2020-05-24 | Document matchingBrace LSP request | Aleksey Kladov | -6/+5 | |
| 2020-05-24 | Highlight `true` and `false` as literals | Matthew Jasper | -0/+3 | |
| 2020-05-24 | Merge pull request #4574 from lnicola/bump-deps | Aleksey Kladov | -244/+342 | |
| Bump some dependencies | ||||
| 2020-05-24 | Merge pull request #4474 from georgewfraser/color_attrs | Aleksey Kladov | -1/+13 | |
| Color attribute functions | ||||
| 2020-05-24 | Bump more npm deps | Laurențiu Nicola | -240/+338 | |
| 2020-05-24 | Bump some npm deps | Laurențiu Nicola | -39/+39 | |
