Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add optional range parameter to SyntaxTreeParams | Ville Penttinen | 2019-03-03 | 1 | -1/+3 |
| | | | | | When range is provided, instead of showing the syntax for the whole file, we'll show the syntax tree for the given range. | ||||
* | Add new type HoverResult to contain the results of hovering | Ville Penttinen | 2019-02-26 | 1 | -1/+1 |
| | | | | | This makes testing hovers easier as well as allows us to do more things with the results if needed. | ||||
* | Assign IDs to assists | Aleksey Kladov | 2019-02-24 | 1 | -9/+39 |
| | |||||
* | Update lsp-types and backtrace | kjeremy | 2019-02-21 | 1 | -1/+1 |
| | |||||
* | Refactor find_all_refs to return ReferenceSearchResult | Ville Penttinen | 2019-02-17 | 1 | -10/+28 |
| | |||||
* | Add support for container_name in workspace/symbol query | Ville Penttinen | 2019-02-12 | 1 | -1/+1 |
| | |||||
* | reformat the world | Aleksey Kladov | 2019-02-08 | 2 | -62/+17 |
| | |||||
* | Some clippy cleanups | kjeremy | 2019-02-06 | 1 | -19/+15 |
| | |||||
* | Fill deprecation for LSP | kjeremy | 2019-02-05 | 1 | -1/+1 |
| | |||||
* | Move comment | kjeremy | 2019-02-04 | 1 | -12/+13 |
| | |||||
* | Future proof by explicitly matching against None | kjeremy | 2019-02-04 | 1 | -1/+1 |
| | |||||
* | Add comment | kjeremy | 2019-02-04 | 1 | -0/+4 |
| | |||||
* | Implement lens for impls and support resolving lenses. | Jeremy Kolb | 2019-02-04 | 1 | -2/+83 |
| | |||||
* | format | Jeremy Kolb | 2019-01-31 | 1 | -1/+3 |
| | |||||
* | Use "▶" for test code lens | Jeremy Kolb | 2019-01-31 | 1 | -1/+1 |
| | | | | I find that this makes code lenses stand out more. | ||||
* | Merge #702 | bors[bot] | 2019-01-30 | 1 | -0/+20 |
|\ | | | | | | | | | | | | | | | | | 702: Go to Implementation r=matklad a=kjeremy First half of #620 Co-authored-by: Jeremy Kolb <[email protected]> Co-authored-by: kjeremy <[email protected]> | ||||
| * | Go to Implementation for structs and enums | Jeremy Kolb | 2019-01-30 | 1 | -0/+20 |
| | | |||||
* | | Pass Documentation up to LSP and add "rust" to our codeblocks there | Jeremy Kolb | 2019-01-30 | 1 | -7/+4 |
|/ | |||||
* | align command naming | Aleksey Kladov | 2019-01-28 | 1 | -2/+2 |
| | |||||
* | Don't use the reserved error code | DJMcNab | 2019-01-26 | 1 | -1/+1 |
| | |||||
* | Return an lsp error | DJMcNab | 2019-01-26 | 1 | -5/+8 |
| | |||||
* | Use the correct working directory for cargo metadata and rustfmt | DJMcNab | 2019-01-26 | 1 | -4/+13 |
| | |||||
* | Fold blocks of mod items. | Andrea Pretto | 2019-01-25 | 1 | -0/+1 |
| | | | | Fixes #572 | ||||
* | Fill in DocumentSymbol::detail | Hrvoje Ban | 2019-01-24 | 1 | -1/+1 |
| | |||||
* | ad status command | Aleksey Kladov | 2019-01-22 | 1 | -0/+4 |
| | |||||
* | Merge #574 | bors[bot] | 2019-01-20 | 1 | -1/+5 |
|\ | | | | | | | | | | | | | | | | | 574: refactor completions to use TextEdit instead of InsertText r=matklad a=gfreezy 1. migrate from `insertText` to `TextEdit` from `CompleteItem` 2. use `insta` to test completions Co-authored-by: gfreezy <[email protected]> | ||||
| * | refactor completions to use TextEdit instead of InsertText | gfreezy | 2019-01-19 | 1 | -1/+5 |
| | | |||||
* | | extend selection expands macros and can totally panic | Aleksey Kladov | 2019-01-20 | 1 | -4/+8 |
| | | |||||
* | | somewhat better name | Aleksey Kladov | 2019-01-20 | 1 | -1/+1 |
| | | |||||
* | | make matching brace consistent | Aleksey Kladov | 2019-01-20 | 1 | -2/+1 |
|/ | |||||
* | more idiomatic code | gfreezy | 2019-01-19 | 1 | -5/+6 |
| | |||||
* | fix comments | gfreezy | 2019-01-19 | 1 | -31/+3 |
| | |||||
* | rename mod | gfreezy | 2019-01-19 | 1 | -16/+31 |
| | |||||
* | switch to lsp-types | Aleksey Kladov | 2019-01-14 | 1 | -1/+1 |
| | |||||
* | Add bench runnable and code lens | Jeremy Kolb | 2019-01-12 | 1 | -35/+39 |
| | |||||
* | Merge #500 | bors[bot] | 2019-01-12 | 1 | -95/+46 |
|\ | | | | | | | | | | | | | | | | | | | | | 500: Code lens support for running tests r=matklad a=kjeremy Supports running individual and mod tests. I feel like this kind of abuses the `Runnables` infrastructure but it works. Maybe later on down the line we should introduce a struct that is really just a tuple of binary, arguments, and environment and pass that back to the client instead. `run_single.ts` is just a paired down version of `runnables.ts` and there is duplication because I think run_single will probably change independent of runnables. Co-authored-by: Jeremy A. Kolb <[email protected]> Co-authored-by: Jeremy Kolb <[email protected]> | ||||
| * | Move `CargoTargetSpec` and friends to cargo_target_spec module | Jeremy Kolb | 2019-01-12 | 1 | -90/+1 |
| | | |||||
| * | Code lens support for running tests | Jeremy A. Kolb | 2019-01-11 | 1 | -81/+121 |
| | | |||||
* | | Switch hover to use MarkupContent | Jeremy Kolb | 2019-01-12 | 1 | -2/+5 |
|/ | | | | MarkedString is deprecated | ||||
* | use location link in goto def | Aleksey Kladov | 2019-01-11 | 1 | -4/+5 |
| | |||||
* | return ref ranges from gotodef | Aleksey Kladov | 2019-01-11 | 1 | -3/+6 |
| | |||||
* | fix on-type offset | Aleksey Kladov | 2019-01-11 | 1 | -26/+21 |
| | |||||
* | add sysroot boilerplate | Aleksey Kladov | 2019-01-10 | 1 | -4/+4 |
| | |||||
* | Fix typo defenition -> definition | Marcus Klaas de Vries | 2019-01-08 | 1 | -1/+1 |
| | |||||
* | fix usages after rename | Aleksey Kladov | 2019-01-08 | 2 | -3/+3 |
| | |||||
* | upstream text-utils to text_unit | Aleksey Kladov | 2019-01-08 | 1 | -4/+3 |
| | |||||
* | introduce CallInfo | Aleksey Kladov | 2019-01-08 | 1 | -17/+11 |
| | |||||
* | migrate ra_lsp_server to new rowan | Aleksey Kladov | 2019-01-08 | 1 | -1/+1 |
| | |||||
* | refactor | Simon Vandel Sillesen | 2019-01-06 | 1 | -26/+21 |
| | |||||
* | indent on typing dot. fixes #439 | Simon Vandel Sillesen | 2019-01-05 | 1 | -22/+34 |
| |