diff options
author | Lenard Pratt <[email protected]> | 2019-04-24 21:16:50 +0100 |
---|---|---|
committer | Lenard Pratt <[email protected]> | 2019-05-04 17:39:51 +0100 |
commit | 8198e13c26fe985af5893af7bdac04041880b461 (patch) | |
tree | d38470089855571fed08974c6cf3d57b80f3084f /crates/ra_lsp_server/src | |
parent | 12629d5e4f2d949eedb707dedad4d75eff09e683 (diff) |
Added local macro goto
Diffstat (limited to 'crates/ra_lsp_server/src')
-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 4d6ede316..50a12ddbc 100644 --- a/crates/ra_lsp_server/src/conv.rs +++ b/crates/ra_lsp_server/src/conv.rs | |||
@@ -73,6 +73,7 @@ impl Conv for CompletionItemKind { | |||
73 | CompletionItemKind::Static => Value, | 73 | CompletionItemKind::Static => Value, |
74 | CompletionItemKind::Method => Method, | 74 | CompletionItemKind::Method => Method, |
75 | CompletionItemKind::TypeParam => TypeParameter, | 75 | CompletionItemKind::TypeParam => TypeParameter, |
76 | CompletionItemKind::Macro => Method, | ||
76 | } | 77 | } |
77 | } | 78 | } |
78 | } | 79 | } |