aboutsummaryrefslogtreecommitdiff
path: root/crates/completion/src/completions
Commit message (Collapse)AuthorAgeFilesLines
* Better config nameKirill Bulatov2020-12-081-2/+4
|
* Disable the completion for no corresponding client resolve capabilitiesKirill Bulatov2020-12-071-76/+58
|
* Document the featureKirill Bulatov2020-12-071-0/+43
|
* Less panic, more testsKirill Bulatov2020-12-071-2/+39
|
* Use stateless completion resolveKirill Bulatov2020-12-071-4/+6
|
* Update attributes completion listLukas Wirth2020-12-061-3/+39
|
* Trigger .let postfix snippet in the middle of the blockAleksey Kladov2020-12-011-4/+31
|
* Place cursor correctly when completing assoc fns with selfAleksey Kladov2020-12-011-20/+20
|
* Type-safer API for dealing with parameter lists with optional selfAleksey Kladov2020-12-011-1/+1
|
* Merge #6601bors[bot]2020-11-291-0/+59
|\ | | | | | | | | | | | | | | 6601: add let and letm postfix to turn expressions into variables r=matklad a=bnjjj Partially resolve #6426 Co-authored-by: Benjamin Coenen <[email protected]>
| * add let and letm postfix to turn expressions into variablesBenjamin Coenen2020-11-281-11/+54
| | | | | | | | Signed-off-by: Benjamin Coenen <[email protected]>
| * add let and letm postfix to turn expressions into variablesBenjamin Coenen2020-11-211-0/+16
| | | | | | | | Signed-off-by: Benjamin Coenen <[email protected]>
* | Move the helpers into ide_dbKirill Bulatov2020-11-282-3/+3
| |
* | Extract the import code into the shared moduleKirill Bulatov2020-11-272-3/+3
| |
* | Merge #6635bors[bot]2020-11-261-14/+43
|\ \ | | | | | | | | | | | | | | | | | | | | | 6635: Complete struct in irrefutable let r=Veykril a=Veykril Fixes #6210 Co-authored-by: Lukas Wirth <[email protected]>
| * | Complete struct in irrefutable letLukas Wirth2020-11-261-14/+43
| |/
* | Merge #6614 #6632bors[bot]2020-11-261-26/+28
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6614: Improve autoimports on completion speed r=matklad a=SomeoneToIgnore Presumably closes https://github.com/rust-analyzer/rust-analyzer/issues/6594 May help https://github.com/rust-analyzer/rust-analyzer/issues/6612 * Ignore modules eaferly * Do less completion string rendering 6632: Pin cargo_metadata r=matklad a=kjeremy See: https://github.com/oli-obk/cargo_metadata/pull/142#issuecomment-733653275 Co-authored-by: Kirill Bulatov <[email protected]> Co-authored-by: kjeremy <[email protected]>
| * | Improve autoimports on completion speedKirill Bulatov2020-11-241-26/+28
| |/ | | | | | | | | * Ignore modules eaferly * Do less completion string rendering
* / Gate autoimports begind experimental completions flagKirill Bulatov2020-11-241-1/+3
|/
* Avoid turning completion objects into buildersKirill Bulatov2020-11-161-32/+10
|
* Remove query aliasesKirill Bulatov2020-11-161-1/+1
|
* Fix the other testKirill Bulatov2020-11-161-3/+3
|
* Qualify autoimport completion suggestionsKirill Bulatov2020-11-161-12/+23
|
* Better filter mod pathsKirill Bulatov2020-11-161-25/+27
|
* Move autoimport completion into the unqialified_path moduleKirill Bulatov2020-11-162-153/+139
|
* Omit modules during autocompletionKirill Bulatov2020-11-161-13/+13
|
* Tweak the search limits a bitKirill Bulatov2020-11-161-1/+3
|
* Reuse existing element renderingKirill Bulatov2020-11-161-48/+34
|
* Use imports_locatorKirill Bulatov2020-11-161-38/+36
|
* Rename the moduleKirill Bulatov2020-11-161-5/+1
|
* Allow to configure the merge behaviorKirill Bulatov2020-11-161-5/+2
|
* Add braces to functions and macrosKirill Bulatov2020-11-161-7/+59
|
* Tidy up the testsKirill Bulatov2020-11-161-49/+15
|
* Use rewriter api to add both changesKirill Bulatov2020-11-161-11/+51
|
* Add imports in auto completionKirill Bulatov2020-11-161-0/+114
|
* Don't complete keywords in struct literalsLukas Wirth2020-11-161-0/+46
|
* add suggestion ..Default::default() for remaining struct fields in a ↵Benjamin Coenen2020-11-131-3/+105
| | | | | | constructor #6492 Signed-off-by: Benjamin Coenen <[email protected]>
* Add some postfix snippetPavan Kumar Sunkara2020-11-081-0/+12
|
* Remove more unreachable pubsAleksey Kladov2020-11-021-3/+3
|
* Reduce visibility of some methodsIgor Aleksanov2020-10-261-1/+1
|
* Move Completions structure definition into completions moduleIgor Aleksanov2020-10-255-32/+25
|
* Reorganize completions structureIgor Aleksanov2020-10-2514-0/+5357