diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-07-03 10:49:12 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-03 10:49:12 +0100 |
commit | 81bb3d9c1a1cfd1e94a3c43013eb7f63cf54f8c7 (patch) | |
tree | 8bdde6b7793c9aa077fd06ba64bb262a77235fc8 /crates/ra_ide/src/completion/completion_item.rs | |
parent | 4cb8bf03c588dcf244d25785de3878b6ef3f7958 (diff) | |
parent | 0e23175a077de5183a34696490848b47e4198f56 (diff) |
Merge #5199
5199: Cleanup record completion tests r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_ide/src/completion/completion_item.rs')
-rw-r--r-- | crates/ra_ide/src/completion/completion_item.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/crates/ra_ide/src/completion/completion_item.rs b/crates/ra_ide/src/completion/completion_item.rs index 98348b349..4db371d57 100644 --- a/crates/ra_ide/src/completion/completion_item.rs +++ b/crates/ra_ide/src/completion/completion_item.rs | |||
@@ -129,24 +129,24 @@ impl CompletionItemKind { | |||
129 | #[cfg(test)] | 129 | #[cfg(test)] |
130 | pub(crate) fn tag(&self) -> &'static str { | 130 | pub(crate) fn tag(&self) -> &'static str { |
131 | match self { | 131 | match self { |
132 | CompletionItemKind::Snippet => "sn", | 132 | CompletionItemKind::Attribute => "at", |
133 | CompletionItemKind::Keyword => "kw", | 133 | CompletionItemKind::Binding => "bn", |
134 | CompletionItemKind::Module => "md", | ||
135 | CompletionItemKind::Function => "fn", | ||
136 | CompletionItemKind::BuiltinType => "bt", | 134 | CompletionItemKind::BuiltinType => "bt", |
137 | CompletionItemKind::Struct => "st", | 135 | CompletionItemKind::Const => "ct", |
138 | CompletionItemKind::Enum => "en", | 136 | CompletionItemKind::Enum => "en", |
139 | CompletionItemKind::EnumVariant => "ev", | 137 | CompletionItemKind::EnumVariant => "ev", |
140 | CompletionItemKind::Binding => "bn", | ||
141 | CompletionItemKind::Field => "fd", | 138 | CompletionItemKind::Field => "fd", |
139 | CompletionItemKind::Function => "fn", | ||
140 | CompletionItemKind::Keyword => "kw", | ||
141 | CompletionItemKind::Macro => "ma", | ||
142 | CompletionItemKind::Method => "me", | ||
143 | CompletionItemKind::Module => "md", | ||
144 | CompletionItemKind::Snippet => "sn", | ||
142 | CompletionItemKind::Static => "sc", | 145 | CompletionItemKind::Static => "sc", |
143 | CompletionItemKind::Const => "ct", | 146 | CompletionItemKind::Struct => "st", |
144 | CompletionItemKind::Trait => "tt", | 147 | CompletionItemKind::Trait => "tt", |
145 | CompletionItemKind::TypeAlias => "ta", | 148 | CompletionItemKind::TypeAlias => "ta", |
146 | CompletionItemKind::Method => "me", | ||
147 | CompletionItemKind::TypeParam => "tp", | 149 | CompletionItemKind::TypeParam => "tp", |
148 | CompletionItemKind::Macro => "ma", | ||
149 | CompletionItemKind::Attribute => "at", | ||
150 | } | 150 | } |
151 | } | 151 | } |
152 | } | 152 | } |