diff options
author | Florian Diebold <[email protected]> | 2019-01-07 18:12:19 +0000 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2019-01-12 14:01:27 +0000 |
commit | d0bdaa6c00faa503db58f2a7987d1252086b4441 (patch) | |
tree | c304f66a307b6b5e9227f048ac5d5a4adf4f47a1 /crates/ra_lsp_server | |
parent | 082ef52bcb15d779c6aff78d9860d328bf7df9b2 (diff) |
Complete inherent methods
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r-- | crates/ra_lsp_server/src/conv.rs | 1 |
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 | } |