aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/completion/complete_path.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* Some cleanup and additional testsFlorian Diebold2019-02-011-0/+11
|
* Make the Resolution variants tuple variantsFlorian Diebold2019-02-011-2/+2
|
* CleanupFlorian Diebold2019-02-011-3/+3
|
* Use the new Resolver API in completionFlorian Diebold2019-02-011-6/+6
|
* Add module documentation supportJeremy A. Kolb2019-01-251-0/+16
|
* EnumVariant details for completionJeremy A. Kolb2019-01-251-1/+34
|
* pack enum variants into arenaAleksey Kladov2019-01-251-5/+5
|
* Migrate trait & type to new idsAleksey Kladov2019-01-241-6/+1
|
* move consts&statics to new idAleksey Kladov2019-01-241-0/+2
|
* adapt ide_api to the new APIAleksey Kladov2019-01-241-1/+4
|
* adapt ide_api to the new APIAleksey Kladov2019-01-241-20/+15
|
* update ide_api to new hirAleksey Kladov2019-01-241-0/+2
|
* Change ids strategyAleksey Kladov2019-01-241-17/+20
| | | | | | | this is a part of larghish hir refactoring which aims to * replace per-source-root module trees with per crate trees * switch from a monotyped DedId to type-specific ids
* Fix snapJeremy A. Kolb2019-01-231-1/+7
|
* Add way of getting docs from the code model and use for completionJeremy A. Kolb2019-01-231-1/+4
|
* move completion item tests closer to the codeAleksey Kladov2019-01-231-26/+0
| | | | | this is the reason why we need marks: the tests were spread across two files, because I've forgotten that there were tests already
* use a combination of `source_change` and `text_edit` for `CompleteItem`gfreezy2019-01-201-2/+2
|
* refactor to use `remove_range` and `replace_range` instead of TextEditgfreezy2019-01-191-6/+14
|
* refactor completions to use TextEdit instead of InsertTextgfreezy2019-01-191-10/+11
|
* remove Canceled from impl of ra_ide_apiAleksey Kladov2019-01-151-6/+4
|
* remove Cancelable from nameresAleksey Kladov2019-01-151-2/+2
|
* remove Cancelable from navigation targetAleksey Kladov2019-01-151-1/+1
|
* remove Cancelable from adt APIAleksey Kladov2019-01-151-1/+1
|
* Use name resolution for goto definitionFlorian Diebold2019-01-101-3/+3
|
* Merge #470bors[bot]2019-01-101-8/+9
|\ | | | | | | | | | | | | | | | | | | 470: Type inference for enum variants r=flodiebold a=marcusklaas Opened a new PR instead of https://github.com/rust-analyzer/rust-analyzer/pull/461. Totally botched that one. I think I resolved all the issues mentioned there. Co-authored-by: Marcus Klaas de Vries <[email protected]>
| * Save variant names in EnumData to reduce needless queriesMarcus Klaas de Vries2019-01-101-10/+5
| | | | | | | | | | | | We already have their names when anyway, and when in all (current) situations where we're interested in an Enum's variants, we want their names.
| * Implement type inference for enum variantsMarcus Klaas de Vries2019-01-101-8/+14
| |
* | dont complete () if they are already thereAleksey Kladov2019-01-101-0/+14
|/
* fix usages after renameAleksey Kladov2019-01-081-0/+128