aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_completion/src/render.rs
Commit message (Expand)AuthorAgeFilesLines
* fix: don't add duplicate `&` during completionAleksey Kladov2021-06-201-52/+23
* internal: use minicore deref moreAleksey Kladov2021-06-181-12/+8
* Move test_utils into tests moduleLukas Wirth2021-06-161-1/+1
* SimplifyLukas Wirth2021-06-161-51/+27
* Merge #9299bors[bot]2021-06-161-3/+0
|\
| * Filter out non-type completions in the respective completions modules insteadLukas Wirth2021-06-161-3/+0
* | internal: add deref_mut to minicoreAleksey Kladov2021-06-161-16/+6
* | internal: switch some tests to minicoreAleksey Kladov2021-06-151-8/+4
|/
* internal: check that coverage marks are always pairedAleksey Kladov2021-06-131-0/+1
* clippy::redudant_borrowMaan20032021-06-131-1/+1
* Merge #9219bors[bot]2021-06-111-1/+4
|\
| * Replace some AssocItem::containing_trait calls trait_or_trait_implLukas Wirth2021-06-111-1/+4
* | Don't allow lookup by self for unprefixed self access completionsLukas Wirth2021-06-111-5/+8
|/
* SimplifyLukas Wirth2021-06-091-208/+178
* Don't complete values in type positionLukas Wirth2021-06-081-7/+8
* Move more things into PathCompletionContextLukas Wirth2021-06-071-2/+6
* Add config setting for self-on-the-flyLukas Wirth2021-05-311-1/+1
* Less strings, more hir::NamesLukas Wirth2021-05-311-4/+4
* Complete `self.` prefixed fields and methods inside methodsLukas Wirth2021-05-311-7/+23
* Use `Name`s instead of Strings in the completion rendering apiLukas Wirth2021-05-311-67/+76
* Set `record_pat_syntax` more precisely in CompletionContextLukas Wirth2021-05-261-4/+1
* Merge pattern completion related bools into an enumLukas Wirth2021-05-261-2/+2
* Infer correct expected type for generic struct fieldsFlorian Diebold2021-05-231-0/+7
* Fix compilation of hir and ide cratesFlorian Diebold2021-05-211-1/+1
* completion relevance distinguish between exact type match and could unifyJosh Mcguigan2021-03-261-19/+37
* completion relevance consider if types can be unifiedJosh Mcguigan2021-03-261-1/+32
* add unit test to demonstrate struct fields/methods do not get ref match compl...Josh Mcguigan2021-03-231-0/+38
* implement a temporary workaround for #8058Josh Mcguigan2021-03-221-2/+4
* Add label completionLukas Wirth2021-03-211-0/+1
* Don't use an untyped String for ActiveParam trackingLukas Wirth2021-03-201-3/+2
* don't clone types that are copy (clippy::clone_on_copy)Matthias Krüger2021-03-171-1/+1
* minor style fixes per feedback on #8036Josh Mcguigan2021-03-161-27/+21
*-. Merge #7900 #8000bors[bot]2021-03-161-8/+46
|\ \
| * | show function params in completion detailJosh Mcguigan2021-03-121-8/+46
* | | completions: centralize calculation of relevance and ref matchesJosh Mcguigan2021-03-161-35/+147
| |/ |/|
* | implement function completion scoringJosh Mcguigan2021-03-151-0/+60
* | remove expected_name_and_type method on completion context in favor of using ...Josh Mcguigan2021-03-151-12/+4
* | update algorithm for determining expected type of completionJosh Mcguigan2021-03-151-12/+3
* | increase completion relevance for items in local scopeJosh Mcguigan2021-03-141-28/+51
* | Skip ref_match on same types, remove sorting in testsivan7702021-03-141-38/+25
* | Added both references and original matches to testsivan7702021-03-131-34/+42
* | Fix incorrect DerefMut test reference typeivan7702021-03-131-1/+1
* | Make relevance tests display references, suggest derefs only when neededivan7702021-03-131-15/+83
* | Simplify call site and deref completion testivan7702021-03-131-85/+16
* | Count derefs as matched types if possibleivan7702021-03-131-3/+125
|/
* add completion relevance scoreJosh Mcguigan2021-03-121-10/+12
* Unify namingAleksey Kladov2021-03-121-8/+7
* use references in CompletionItem's builderyonip232021-03-111-31/+31
* Future proof completion scoresAleksey Kladov2021-03-091-58/+41
* Cleanup auto-ref in completionAleksey Kladov2021-03-091-17/+73