aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/completion
Commit message (Collapse)AuthorAgeFilesLines
* replace todo with fixmeAleksey Kladov2019-03-233-3/+3
|
* Rename name field to ctor as wellFlorian Diebold2019-03-211-1/+1
|
* TypeName => TypeCtorFlorian Diebold2019-03-211-3/+3
|
* Remove the old variants replaced by Ty::ApplyFlorian Diebold2019-03-212-18/+15
|
* Replace Display by a pretty printing trait for TyFlorian Diebold2019-03-161-4/+7
| | | | | This allows removing the names from Adt and FnDef (and more later), as a first step towards aligning more with chalk's Ty :)
* rename syntax_mapping as wellAleksey Kladov2019-03-022-4/+4
|
* rename syntax-mapping -> source-mapAleksey Kladov2019-03-022-2/+2
|
* complete patternsAleksey Kladov2019-02-242-0/+101
|
* Rename Type => TypeAliasFlorian Diebold2019-02-242-3/+3
|
* move testing functionsAleksey Kladov2019-02-249-20/+11
|
* move the rest of presentation to presentationAleksey Kladov2019-02-242-50/+20
|
* move more code to presentationAleksey Kladov2019-02-242-88/+57
|
* move res completion to presentationAleksey Kladov2019-02-243-41/+42
|
* simplifyAleksey Kladov2019-02-241-31/+31
|
* move enum-variants to presentationAleksey Kladov2019-02-242-21/+21
|
* 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
|