diff options
author | ivan770 <[email protected]> | 2021-03-14 15:16:29 +0000 |
---|---|---|
committer | ivan770 <[email protected]> | 2021-03-14 17:00:41 +0000 |
commit | 7d48e04f316a384967d48a261f1e3b70b5f85a98 (patch) | |
tree | 76eb426dcfa87e3b32f3b0efb4f88ca4416c57af /crates/ide_completion/src | |
parent | 8602f9573b3a450b6a29c23bb4bfb7bd4108a89c (diff) |
Introduce StructureNodeKind
Diffstat (limited to 'crates/ide_completion/src')
-rw-r--r-- | crates/ide_completion/src/item.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ide_completion/src/item.rs b/crates/ide_completion/src/item.rs index 7b553ea7a..9a4b5217a 100644 --- a/crates/ide_completion/src/item.rs +++ b/crates/ide_completion/src/item.rs | |||
@@ -225,7 +225,6 @@ impl CompletionItemKind { | |||
225 | SymbolKind::Local => "lc", | 225 | SymbolKind::Local => "lc", |
226 | SymbolKind::Macro => "ma", | 226 | SymbolKind::Macro => "ma", |
227 | SymbolKind::Module => "md", | 227 | SymbolKind::Module => "md", |
228 | SymbolKind::Region => "rn", | ||
229 | SymbolKind::SelfParam => "sp", | 228 | SymbolKind::SelfParam => "sp", |
230 | SymbolKind::Static => "sc", | 229 | SymbolKind::Static => "sc", |
231 | SymbolKind::Struct => "st", | 230 | SymbolKind::Struct => "st", |