aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/conv.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-12-21 23:20:14 +0000
committerAleksey Kladov <[email protected]>2018-12-21 23:20:14 +0000
commit97cb463c9be3c21931d0e284603238ce3cb02b2a (patch)
tree232a4321f61d881319983b15a7b80c4e6394be1b /crates/ra_lsp_server/src/conv.rs
parent238b52358d0d6109c89d1288b12bfa0aa71790de (diff)
moar icons
Diffstat (limited to 'crates/ra_lsp_server/src/conv.rs')
-rw-r--r--crates/ra_lsp_server/src/conv.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ra_lsp_server/src/conv.rs b/crates/ra_lsp_server/src/conv.rs
index 6f770ec69..9320f147a 100644
--- a/crates/ra_lsp_server/src/conv.rs
+++ b/crates/ra_lsp_server/src/conv.rs
@@ -53,6 +53,8 @@ impl Conv for CompletionItemKind {
53 match self { 53 match self {
54 CompletionItemKind::Keyword => Keyword, 54 CompletionItemKind::Keyword => Keyword,
55 CompletionItemKind::Snippet => Snippet, 55 CompletionItemKind::Snippet => Snippet,
56 CompletionItemKind::Module => Module,
57 CompletionItemKind::Function => Function,
56 } 58 }
57 } 59 }
58} 60}