Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | introduce separate goto_defenition | Aleksey Kladov | 2019-01-05 | 1 | -3/+2 |
| | |||||
* | move hover implementation to ra_analysis | Aleksey Kladov | 2019-01-05 | 1 | -41/+9 |
| | |||||
* | Merge #414 | bors[bot] | 2019-01-05 | 1 | -2/+25 |
|\ | | | | | | | | | | | | | | | 414: textDocument/hover returns both type name and doc_text r=matklad a=h-michael implement #389 Co-authored-by: Hirokazu Hata <[email protected]> | ||||
| * | Use both type_of and doc_text_for | Hirokazu Hata | 2019-01-05 | 1 | -14/+25 |
| | | |||||
| * | Return type name when doc_text_for returns nothing | Hirokazu Hata | 2019-01-03 | 1 | -0/+12 |
| | | |||||
* | | extract area to a crate | Aleksey Kladov | 2019-01-04 | 1 | -1/+4 |
|/ | |||||
* | use LocalPtr in navigation target | Aleksey Kladov | 2019-01-03 | 1 | -1/+1 |
| | |||||
* | use navigation target in API | Aleksey Kladov | 2019-01-02 | 1 | -18/+15 |
| | |||||
* | introduce navigation target | Aleksey Kladov | 2019-01-02 | 1 | -5/+5 |
| | |||||
* | Merge #165 | bors[bot] | 2018-12-31 | 1 | -0/+10 |
|\ | | | | | | | | | | | | | | | | | | | | | | | 165: Make modules with tests runnable r=farodin91 a=farodin91 Fixes #154 I having problems to traverse the path to module. The main problem is that module_tree only supports `FileId` and not `Module` in files. Any idea? I need to clean up the code a bit later. Co-authored-by: Jan Jansen <[email protected]> | ||||
| * | Make modules with tests runnable | Jan Jansen | 2018-12-31 | 1 | -0/+10 |
| | | | | | | | | Fixes #154 | ||||
* | | Merge #385 | bors[bot] | 2018-12-31 | 1 | -3/+23 |
|\ \ | |/ |/| | | | | | | | | | | | 385: Implement DocumentHighlight r=matklad a=DJMcNab Fixes #80. Co-authored-by: DJMcNab <[email protected]> | ||||
| * | Use TryConv for conversion | DJMcNab | 2018-12-31 | 1 | -2/+1 |
| | | |||||
| * | Implement DocumentHighlight | DJMcNab | 2018-12-31 | 1 | -3/+24 |
| | | |||||
* | | Move renames into ra_analysis | DJMcNab | 2018-12-30 | 1 | -13/+8 |
|/ | |||||
* | Simplify failure bail code | Aleksander Vognild Burkow | 2018-12-29 | 1 | -3/+4 |
| | |||||
* | Add better error message for Command failure | Aleksander Vognild Burkow | 2018-12-29 | 1 | -1/+4 |
| | |||||
* | Add support for formatting entire document with rustfmt | Aleksander Vognild Burkow | 2018-12-29 | 1 | -0/+33 |
| | | | | | | Attempting to format a document when rustfmt isn't installed will result in an error being returned to the frontend. An alternative implementation would be returning zero replacements. | ||||
* | switch to FileRange | Aleksey Kladov | 2018-12-28 | 1 | -11/+9 |
| | |||||
* | fix warning conversion | Aleksey Kladov | 2018-12-24 | 1 | -3/+1 |
| | |||||
* | remove option from Diagnostic | gfreezy | 2018-12-24 | 1 | -1/+1 |
| | |||||
* | add serverity to vscode diagnostics | gfreezy | 2018-12-23 | 1 | -2/+13 |
| | |||||
* | move completion items to conv | Aleksey Kladov | 2018-12-21 | 1 | -25/+4 |
| | |||||
* | make compleion item details private | Aleksey Kladov | 2018-12-21 | 1 | -8/+14 |
| | |||||
* | hide atom edits a bit | Aleksey Kladov | 2018-12-21 | 1 | -2/+9 |
| | |||||
* | fold curly blocks | Aleksey Kladov | 2018-12-20 | 1 | -3/+4 |
| | |||||
* | swtich lsp server to vfs | Aleksey Kladov | 2018-12-20 | 1 | -2/+2 |
| | |||||
* | Bump languageserver-types to 0.53.0 to support LSP 3.14.0 | Jeremy A. Kolb | 2018-12-19 | 1 | -2/+2 |
| | | | | See: https://microsoft.github.io/language-server-protocol/specification#version_3_14_0 | ||||
* | extract AtomEdit and Edit into new ra_text_edit crate | Bernardo | 2018-12-10 | 1 | -1/+2 |
| | |||||
* | Refactor symbol resolve API | Aleksey Kladov | 2018-12-08 | 1 | -7/+8 |
| | | | | | Introduce ReferenceResolution to avoid nesting to many non-nominal types. | ||||
* | grand module rename | Aleksey Kladov | 2018-12-08 | 1 | -495/+0 |
| | |||||
* | reformat | Aleksey Kladov | 2018-12-08 | 1 | -1/+0 |
| | |||||
* | Add a better text for hover and stop duplicating work done in ↵ | DJMcNab | 2018-12-08 | 1 | -21/+22 |
| | | | | approximatelly_resolve_symbol | ||||
* | Fix the range of a hover request to be more in line with prior art | DJMcNab | 2018-12-08 | 1 | -1/+8 |
| | |||||
* | modernize more | Aleksey Kladov | 2018-12-06 | 1 | -18/+20 |
| | |||||
* | Fix diagnostic fixes showing up everywhere | Florian Diebold | 2018-12-02 | 1 | -2/+2 |
| | | | | | The LSP code action request always returned the fixes for all diagnostics anywhere in the file, because of a shadowed variable. | ||||
* | Clippy lints | Jeremy A. Kolb | 2018-11-29 | 1 | -5/+8 |
| | |||||
* | hack around nested libraries | Aleksey Kladov | 2018-11-26 | 1 | -3/+29 |
| | |||||
* | Use `:` as a trigger character for completion | Aleksey Kladov | 2018-11-21 | 1 | -1/+23 |
| | | | | | | | | | Note that VSCode asks for completion after *first* `:` as well: use crate: we use hacks to protect against that, and to give completions only after the second `:`. | ||||
* | workspace-symbols function for Emacs | Aleksey Kladov | 2018-11-08 | 1 | -8/+15 |
| |