LSP 3.15 supports the deprecated tag on completions

This commit is contained in:
kjeremy 2019-12-13 16:08:47 -05:00
parent 9c9f4635b4
commit a234b5a3ca

View file

@ -130,6 +130,11 @@ impl ConvWith<(&LineIndex, LineEndings)> for CompletionItem {
deprecated: Some(self.deprecated()),
..Default::default()
};
if self.deprecated() {
res.tags = Some(vec![lsp_types::CompletionItemTag::Deprecated])
}
res.insert_text_format = Some(match self.insert_text_format() {
InsertTextFormat::Snippet => lsp_types::InsertTextFormat::Snippet,
InsertTextFormat::PlainText => lsp_types::InsertTextFormat::PlainText,