mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
Merge #5431
5431: Don't show docs in concise signature help r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
fd6717799c
1 changed files with 9 additions and 5 deletions
|
@ -271,12 +271,16 @@ pub(crate) fn signature_help(
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let documentation = call_info.doc.map(|doc| {
|
let documentation = if concise {
|
||||||
lsp_types::Documentation::MarkupContent(lsp_types::MarkupContent {
|
None
|
||||||
kind: lsp_types::MarkupKind::Markdown,
|
} else {
|
||||||
value: doc,
|
call_info.doc.map(|doc| {
|
||||||
|
lsp_types::Documentation::MarkupContent(lsp_types::MarkupContent {
|
||||||
|
kind: lsp_types::MarkupKind::Markdown,
|
||||||
|
value: doc,
|
||||||
|
})
|
||||||
})
|
})
|
||||||
});
|
};
|
||||||
|
|
||||||
let signature =
|
let signature =
|
||||||
lsp_types::SignatureInformation { label, documentation, parameters: Some(parameters) };
|
lsp_types::SignatureInformation { label, documentation, parameters: Some(parameters) };
|
||||||
|
|
Loading…
Reference in a new issue