aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/display.rs
Commit message (Collapse)AuthorAgeFilesLines
* Support completion for macrosuHOOCCOOHu2019-09-101-1/+7
|
* allow rustfmt to reorder importsAleksey Kladov2019-07-041-4/+7
| | | | | | This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway
* Simpliy hover on ast::nameEdwin Cheng2019-06-101-10/+0
|
* Use classify_name_ref in hoverEdwin Cheng2019-06-101-0/+1
|
* Use &str instread of Option<String>Edwin Cheng2019-06-091-1/+1
|
* Rename Description to ShortLabelEdwin Cheng2019-06-091-2/+2
|
* Change docs and description to getter methodEdwin Cheng2019-06-091-1/+1
|
* Add display::DescriptionEdwin Cheng2019-06-091-0/+3
|
* Remove node function in NavTargetEdwin Cheng2019-06-081-3/+2
|
* Fix doc commentVille Penttinen2019-04-091-1/+1
|
* Move display related things from hover to displayVille Penttinen2019-04-091-0/+27
|
* Move FunctionSignature to display/function_signatureVille Penttinen2019-04-091-100/+3
|
* Make display modules privateVille Penttinen2019-04-091-4/+5
|
* Move structure to display/structureVille Penttinen2019-04-091-2/+4
|
* Move navigation_target to display/navigation_targetVille Penttinen2019-04-091-0/+4
|
* Move completion label functions to displayVille Penttinen2019-04-091-1/+27
|
* Add FunctionSignature::from_hirVille Penttinen2019-04-091-0/+7
|
* Normalize line-endings in display.rsVille Penttinen2019-04-091-112/+112
| | | | This changes from CRLF to LF
* Move FunctionSignature creation to displayVille Penttinen2019-04-091-0/+49
|
* Move FunctionSignature to display, remove write_joinedVille Penttinen2019-04-091-23/+35
| | | | | write_joined is replaced with `join_to_string::join` which provides the necessary functionality.
* Refactor CallInfo function signatures to new FunctionSignature typeVille Penttinen2019-04-091-0/+51
This is used by CallInfo to create a pretty printed function signature that can be used with completions and other places as well.