aboutsummaryrefslogtreecommitdiff
path: root/crates/completion/src/render.rs
Commit message (Collapse)AuthorAgeFilesLines
* Make `ModPath`'s representation privateJonas Schievink2021-02-041-1/+1
|
* Support unions in symbol searchLukas Wirth2021-01-241-2/+1
|
* More useful fn detail in completionAleksey Kladov2021-01-221-6/+6
| | | | | | | | | | | | | Detail should be rendered as shtort one line, just dumping fn header there is not useful, despite the fact that TS does this. The fact that this is a function should be indicated by the icon, the same goes for pub/const/async etc qualitfiers name is already present in the lable (and arg list should be a part of that, as in idea) But the return type is the small genuinerlly useful bit of info we can show here
* Update completions test outputLukas Wirth2021-01-201-17/+47
|
* Partially unify SymbolKind and CompletionItemKindLukas Wirth2021-01-201-21/+26
|
* Add LifetimeParam and ConstParam to CompletionItemKindLukas Wirth2021-01-191-1/+5
|
* Show deprecated completions for deprecated traitsKirill Bulatov2021-01-181-10/+37
|
* Consider rustc_deprecated attr when checking for deprecationKirill Bulatov2021-01-181-8/+9
|
* Add flyimport completion for trait assoc itemsKirill Bulatov2021-01-161-11/+11
|
* Use specific kind for the flyimport completionsKirill Bulatov2021-01-161-5/+10
|
* Change <|> to $0 - RebaseKevaundray Wedderburn2021-01-071-23/+23
|
* Align config's API with usageAleksey Kladov2021-01-061-6/+6
| | | | The config now is mostly immutable, optimize for that.
* Make the result of Const, FunctionRender and TypeAliasRender constructors ↵Nick Spain2021-01-021-2/+1
| | | | | | optional They use source() which now returns an Option so they need to too.
* Reduce some more code duplicationLukas Wirth2020-12-221-0/+6
|
* Add completions for patternsLukas Wirth2020-12-201-0/+1
|
* Align code_model name with ungrammarAleksey Kladov2020-12-201-5/+4
|
* Disable the completion for no corresponding client resolve capabilitiesKirill Bulatov2020-12-071-27/+2
|
* Use stateless completion resolveKirill Bulatov2020-12-071-8/+4
|
* Simplify import edit calculationKirill Bulatov2020-12-071-5/+8
|
* Remove redundant codeKirill Bulatov2020-12-071-8/+2
|
* Refactor the codeKirill Bulatov2020-12-071-2/+8
|
* Add eager resolve capabilityKirill Bulatov2020-12-071-2/+2
|
* Move the helpers into ide_dbKirill Bulatov2020-11-281-1/+1
|
* Group import data in a structKirill Bulatov2020-11-271-11/+12
|
* Extract the import code into the shared moduleKirill Bulatov2020-11-271-1/+1
|
* Improve autoimports on completion speedKirill Bulatov2020-11-241-0/+1
| | | | | * Ignore modules eaferly * Do less completion string rendering
* Avoid turning completion objects into buildersKirill Bulatov2020-11-161-6/+29
|
* Fix the other testKirill Bulatov2020-11-161-0/+22
|
* Remove intra-crate facade from completionsIgor Aleksanov2020-11-031-9/+7
|
* Get rid of do-er antipatternIgor Aleksanov2020-11-031-13/+37
|
* Provide only explicit constructor for RenderContextIgor Aleksanov2020-11-031-7/+1
|
* Add doc-comments to the new filesIgor Aleksanov2020-11-031-0/+2
|
* Make structures order more logical in render.rsIgor Aleksanov2020-11-031-5/+5
|
* Move rendering tests to the render moduleIgor Aleksanov2020-11-031-8/+781
|
* Add TypeAliasRenderIgor Aleksanov2020-11-031-1/+2
|
* Add ConstRenderIgor Aleksanov2020-11-031-2/+8
|
* Introduce render moduleIgor Aleksanov2020-11-031-0/+50