aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Retry inlay hints on content modified errorAleksey Kladov2019-12-304-17/+22
|
* Thoughtlessly copy-paste a fix to a problem I don't understandAleksey Kladov2019-12-301-1/+2
|
* Refactor inlay hintsAleksey Kladov2019-12-301-103/+67
|
* Add config to CtxAleksey Kladov2019-12-304-9/+10
|
* Encapsulate highlighting activationAleksey Kladov2019-12-304-35/+24
|
* Merge #2693bors[bot]2019-12-306-155/+139
|\ | | | | | | | | | | | | | | 2693: Encapsulate inlay hints activation r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Encapsulate inlay hints activationAleksey Kladov2019-12-302-38/+39
| |
| * Dead codeAleksey Kladov2019-12-302-18/+2
| |
| * status is not a commandAleksey Kladov2019-12-302-13/+13
| |
| * Hints are not commandsAleksey Kladov2019-12-303-4/+2
| |
| * Move all commands to ctxAleksey Kladov2019-12-303-22/+26
| |
| * Minor refactorAleksey Kladov2019-12-301-9/+7
| |
| * Refactor runablesAleksey Kladov2019-12-303-67/+66
|/
* Merge #2692bors[bot]2019-12-305-82/+60
|\ | | | | | | | | | | | | | | 2692: Move expand macro to the new context r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Move expand macro to the new contextAleksey Kladov2019-12-305-75/+53
| |
| * CleanupAleksey Kladov2019-12-302-11/+11
| |
* | Merge #2691bors[bot]2019-12-3015-280/+240
|\| | | | | | | | | | | | | | | 2691: Cleanup imports r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Cleanup importsAleksey Kladov2019-12-305-8/+12
| |
| * Refactor show syntax tree actionAleksey Kladov2019-12-308-134/+116
| |
| * Run prettier on all filesAleksey Kladov2019-12-307-23/+18
| |
| * Move parentModule to the new CtxAleksey Kladov2019-12-303-37/+37
| |
| * Refactor applySourceChangeAleksey Kladov2019-12-307-89/+68
| |
| * Move joinLines to the new CtxAleksey Kladov2019-12-303-21/+21
|/
* Merge #2690bors[bot]2019-12-301-1/+1
|\ | | | | | | | | | | | | | | 2690: Fix server config mispell in vscode extension r=matklad a=kiljacken Fixes #2689 Co-authored-by: Emil Lauridsen <[email protected]>
| * Fix server config mispell in vscode extensionEmil Lauridsen2019-12-301-1/+1
|/
* Merge #2687bors[bot]2019-12-307-52/+110
|\ | | | | | | | | | | | | | | 2687: Move matching brace to new Ctx r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Move matching brace to new CtxAleksey Kladov2019-12-304-32/+35
| |
| * Run prettierAleksey Kladov2019-12-302-20/+16
| |
| * Add prettierAleksey Kladov2019-12-302-6/+19
| |
| * More second command to CtxAleksey Kladov2019-12-304-11/+14
| |
| * Start new ctx moduleAleksey Kladov2019-12-304-20/+63
|/
* Merge #2685bors[bot]2019-12-305-36/+33
|\ | | | | | | | | | | | | | | 2685: Simplify r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * SimplifyAleksey Kladov2019-12-301-32/+29
| |
| * Rename extension.ts -> main.tsAleksey Kladov2019-12-304-4/+4
| |
* | Merge pull request #2684 from matklad/refactor-frontendAleksey Kladov2019-12-3016-1663/+158
|\| | | | | Refactor frontend
| * Minimize typescript CIAleksey Kladov2019-12-302-9/+2
| |
| * Add rollupAleksey Kladov2019-12-306-38/+751
| |
| * Minimize TypeScript buildAleksey Kladov2019-12-3011-1864/+42
| |
| * Trim down launch configurationsAleksey Kladov2019-12-295-71/+15
| |
| * Drop all the debugging tasksAleksey Kladov2019-12-291-309/+0
| | | | | | | | | | | | | | | | There are too many of them, and they no longer match the set of crates we have. This really should be handled in a different way, by having out "rust-analyzer: Run" generate the appropriate lldb config on the fly.
| * Drop obsolete tasksAleksey Kladov2019-12-291-25/+1
|/
* Merge #2681bors[bot]2019-12-293-2/+307
|\ | | | | | | | | | | | | | | 2681: cargo-watcher: Resolve macro call site in more cases r=matklad a=kiljacken This resolves the actual macro call site in a few more cases, f.x. when a macro invokes `compile_error!` (I'm looking at you `ra_hir_def::path::__path`). Co-authored-by: Emil Lauridsen <[email protected]>
| * Add related information with original error siteEmil Lauridsen2019-12-293-1/+306
| |
| * Resolve macro call site in more casesEmil Lauridsen2019-12-291-1/+1
| |
* | Merge #2680bors[bot]2019-12-293-63/+71
|\ \ | |/ |/| | | | | | | | | | | 2680: Fix cargo-watcher file urls on windows r=matklad a=kiljacken Fixes #2676 Co-authored-by: Emil Lauridsen <[email protected]>
| * Lowercase drive letters when getting paths from cargo checkEmil Lauridsen2019-12-293-63/+71
| |
* | Merge #2679bors[bot]2019-12-295-14/+63
|\ \ | | | | | | | | | | | | | | | | | | | | | 2679: Resolve traits for infer using lang item infrastructure r=matklad a=kiljacken As we already have the infrastructure for collecting lang items, use it to find the right traits when doing type-inference. Co-authored-by: Emil Lauridsen <[email protected]>
| * | Remove unused hard-coded pathsEmil Lauridsen2019-12-291-4/+0
| | |
| * | Resolve traits in infer using lang item infrastructureEmil Lauridsen2019-12-293-10/+19
| | |
| * | Add helpers for unpacking lang itemsEmil Lauridsen2019-12-291-0/+44
| |/