aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/completion
Commit message (Collapse)AuthorAgeFilesLines
...
* simplifyAleksey Kladov2019-02-244-35/+31
|
* move presentaion completion to presentationAleksey Kladov2019-02-242-80/+80
|
* move function rendering to presentationAleksey Kladov2019-02-245-24/+49
|
* introduce completion presentationAleksey Kladov2019-02-243-32/+40
| | | | | This module should remove completion rendering boilerplate from the "brains" of completion engine.
* complete fields in struct literalsAleksey Kladov2019-02-241-7/+16
|
* complete struct literalsAleksey Kladov2019-02-242-0/+70
|
* more compact edits in instaAleksey Kladov2019-02-1855-1161/+339
|
* Don't use additional_text_edits API internallyAleksey Kladov2019-02-1856-378/+1274
|
* More orthogonal method namingAleksey Kladov2019-02-184-9/+4
|
* More compact debug representation for completionAleksey Kladov2019-02-1855-1883/+610
|
* Don't render `()` in calls to assoc functionsAleksey Kladov2019-02-173-6/+42
|
* Unify with the autorefed/autoderefed receiver type during method resolutionFlorian Diebold2019-02-171-1/+1
|
* use better label for &mut ref completionAleksey Kladov2019-02-142-11/+11
|
* tweak postfix completionsAleksey Kladov2019-02-142-13/+60
| | | | | * better label * add refm for &mut
* add ref postfix templateAleksey Kladov2019-02-142-3/+27
|
* Complete names from preludeFlorian Diebold2019-02-132-1/+74
|
* Filter attributes from the completion details/labelLaurențiu Nicola2019-02-122-0/+46
|
* Fix some typosPascal Hertleif2019-02-121-1/+1
|
* Implement completion for associated itemsLaurențiu Nicola2019-02-125-1/+223
|
* fix regression in self-referential completionAleksey Kladov2019-02-112-15/+31
|
* use extern prelude in ResolverAleksey Kladov2019-02-112-0/+38
| | | | | | | This fixes two bugs: - completion for paths works again - we handle extern prelude shadowing more correctly
* reformat the worldAleksey Kladov2019-02-087-46/+19
|
* Some clippy cleanupskjeremy2019-02-062-9/+6
|
* Complete extern prelude (again)Florian Diebold2019-02-042-0/+36
|
* fold complete_postfix tests into oneHoàng Đức Hiếu2019-02-035-411/+3
|
* add postfix completion for `dbg!()` with `.dbg`Hoàng Đức Hiếu2019-02-025-6/+212
|
* Some cleanup and additional testsFlorian Diebold2019-02-014-24/+120
|
* Make the Resolution variants tuple variantsFlorian Diebold2019-02-012-18/+14
|
* CleanupFlorian Diebold2019-02-012-4/+4
|
* Use the new Resolver API in completionFlorian Diebold2019-02-015-68/+74
|
* Pass Documentation up to LSP and add "rust" to our codeblocks thereJeremy Kolb2019-01-301-25/+10
|
* Sort completions in testsFlorian Diebold2019-01-2725-270/+271
|
* Add docs to struct fieldsJeremy A. Kolb2019-01-252-6/+14
|
* Add module documentation supportJeremy A. Kolb2019-01-253-1/+43
|
* EnumVariant details for completionJeremy A. Kolb2019-01-253-6/+107
|
* use positional ids for fieldsAleksey Kladov2019-01-251-2/+2
|
* pack enum variants into arenaAleksey Kladov2019-01-251-5/+5
|
* rename def_id -> defAleksey Kladov2019-01-251-4/+1
|
* Merge #623bors[bot]2019-01-244-46/+30
|\ | | | | | | | | | | | | | | | | | | | | 623: WIP: module id is not def id r=matklad a=matklad This achieves two things: * makes module_tree & item_map per crate, not per source_root * begins the refactoring to remove universal `DefId` in favor of having separate ids for each kind of `Def`. Currently, only modules get a differnt ID though. Co-authored-by: Aleksey Kladov <[email protected]>
| * ModuleDef is Def-freeAleksey Kladov2019-01-241-1/+0
| |
| * Migrate trait & type to new idsAleksey Kladov2019-01-242-11/+4
| |
| * move consts&statics to new idAleksey Kladov2019-01-242-2/+4
| |
| * adapt ide_api to the new APIAleksey Kladov2019-01-242-1/+5
| |
| * adapt ide_api to the new APIAleksey Kladov2019-01-243-39/+32
| |
| * new struct idAleksey Kladov2019-01-241-15/+18
| |
| * update ide_api to new hirAleksey Kladov2019-01-243-2/+4
| |
| * Change ids strategyAleksey Kladov2019-01-242-55/+43
| | | | | | | | | | | | | | 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
* | Display type when completing tuplesJeremy Kolb2019-01-242-1/+55
|/
* Fix snapJeremy A. Kolb2019-01-232-6/+12
|
* Add a bunch of new documentation to completionsJeremy A. Kolb2019-01-232-20/+30
|