diff options
author | ivan770 <[email protected]> | 2021-03-11 16:14:41 +0000 |
---|---|---|
committer | ivan770 <[email protected]> | 2021-03-14 16:53:37 +0000 |
commit | 71a97a2d8c30fc4061a545f1e2db10e3559eae36 (patch) | |
tree | 1aa0a643c44d1068b915614e374b0ce71deeade4 /crates/ide_completion/src | |
parent | af8440b84851febd805b6b774bfb326cbdb7175e (diff) |
Provide regions in file structure
Diffstat (limited to 'crates/ide_completion/src')
-rw-r--r-- | crates/ide_completion/src/item.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ide_completion/src/item.rs b/crates/ide_completion/src/item.rs index 9a4b5217a..7b553ea7a 100644 --- a/crates/ide_completion/src/item.rs +++ b/crates/ide_completion/src/item.rs | |||
@@ -225,6 +225,7 @@ 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", | ||
228 | SymbolKind::SelfParam => "sp", | 229 | SymbolKind::SelfParam => "sp", |
229 | SymbolKind::Static => "sc", | 230 | SymbolKind::Static => "sc", |
230 | SymbolKind::Struct => "st", | 231 | SymbolKind::Struct => "st", |