aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server
diff options
context:
space:
mode:
authorFlorian Diebold <[email protected]>2019-01-07 18:12:19 +0000
committerFlorian Diebold <[email protected]>2019-01-12 14:01:27 +0000
commitd0bdaa6c00faa503db58f2a7987d1252086b4441 (patch)
treec304f66a307b6b5e9227f048ac5d5a4adf4f47a1 /crates/ra_lsp_server
parent082ef52bcb15d779c6aff78d9860d328bf7df9b2 (diff)
Complete inherent methods
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r--crates/ra_lsp_server/src/conv.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_lsp_server/src/conv.rs b/crates/ra_lsp_server/src/conv.rs
index 7ca2f437d..22b8e9221 100644
--- a/crates/ra_lsp_server/src/conv.rs
+++ b/crates/ra_lsp_server/src/conv.rs
@@ -69,6 +69,7 @@ impl Conv for CompletionItemKind {
69 CompletionItemKind::TypeAlias => Struct, 69 CompletionItemKind::TypeAlias => Struct,
70 CompletionItemKind::Const => Constant, 70 CompletionItemKind::Const => Constant,
71 CompletionItemKind::Static => Value, 71 CompletionItemKind::Static => Value,
72 CompletionItemKind::Method => Method,
72 } 73 }
73 } 74 }
74} 75}