mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 21:13:37 +00:00
Include description in label details when detail field is marked for resolution
This commit is contained in:
parent
5982d9c420
commit
b857a0b488
1 changed files with 2 additions and 2 deletions
|
@ -339,7 +339,7 @@ fn completion_item(
|
|||
something_to_resolve = item.detail.is_some();
|
||||
None
|
||||
} else {
|
||||
item.detail
|
||||
item.detail.clone()
|
||||
};
|
||||
|
||||
let documentation = if fields_to_resolve.resolve_documentation {
|
||||
|
@ -370,7 +370,7 @@ fn completion_item(
|
|||
} else {
|
||||
lsp_item.label_details = Some(lsp_types::CompletionItemLabelDetails {
|
||||
detail: item.label_detail.as_ref().map(ToString::to_string),
|
||||
description: lsp_item.detail.clone(),
|
||||
description: item.detail,
|
||||
});
|
||||
}
|
||||
} else if let Some(label_detail) = item.label_detail {
|
||||
|
|
Loading…
Reference in a new issue