aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-12-31 13:06:14 +0000
committerAleksey Kladov <[email protected]>2018-12-31 13:06:14 +0000
commita3ee07ac149867d1d7b9c00a752d0c46c337a878 (patch)
tree61634a3ed639ccc2be3cdd17cda5e00c1b2f79d7
parent2746dacac02d56854e9aa31877730eb9e83628d5 (diff)
fix icons in completion
-rw-r--r--crates/ra_lsp_server/src/conv.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/conv.rs b/crates/ra_lsp_server/src/conv.rs
index 0d6e62727..618486250 100644
--- a/crates/ra_lsp_server/src/conv.rs
+++ b/crates/ra_lsp_server/src/conv.rs
@@ -82,7 +82,6 @@ impl Conv for CompletionItem {
82 InsertText::Snippet { text } => { 82 InsertText::Snippet { text } => {
83 res.insert_text = Some(text); 83 res.insert_text = Some(text);
84 res.insert_text_format = Some(InsertTextFormat::Snippet); 84 res.insert_text_format = Some(InsertTextFormat::Snippet);
85 res.kind = Some(languageserver_types::CompletionItemKind::Keyword);
86 } 85 }
87 } 86 }
88 res 87 res