|
1 | 1 | //! Completion for use trees
|
2 | 2 |
|
3 | 3 | use hir::ScopeDef;
|
4 |
| -use ide_db::FxHashSet; |
| 4 | +use ide_db::{FxHashSet, SymbolKind}; |
5 | 5 | use syntax::{ast, AstNode};
|
6 | 6 |
|
7 | 7 | use crate::{
|
8 | 8 | context::{CompletionContext, NameRefContext, PathCompletionCtx, PathKind, PathQualifierCtx},
|
9 | 9 | item::Builder,
|
10 |
| - CompletionRelevance, Completions, |
| 10 | + CompletionItem, CompletionItemKind, CompletionRelevance, Completions, |
11 | 11 | };
|
12 | 12 |
|
13 | 13 | pub(crate) fn complete_use_tree(acc: &mut Completions, ctx: &CompletionContext) {
|
@@ -101,13 +101,30 @@ pub(crate) fn complete_use_tree(acc: &mut Completions, ctx: &CompletionContext)
|
101 | 101 | cov_mark::hit!(use_tree_crate_roots_only);
|
102 | 102 | acc.add_crate_roots(ctx);
|
103 | 103 | }
|
104 |
| - // only show modules in a fresh UseTree |
| 104 | + // only show modules and non-std enum in a fresh UseTree |
105 | 105 | None => {
|
106 |
| - cov_mark::hit!(unqualified_path_only_modules_in_import); |
| 106 | + cov_mark::hit!(unqualified_path_selected_only); |
107 | 107 | ctx.process_all_names(&mut |name, res| {
|
108 |
| - if let ScopeDef::ModuleDef(hir::ModuleDef::Module(_)) = res { |
109 |
| - acc.add_resolution(ctx, name, res); |
110 |
| - } |
| 108 | + match res { |
| 109 | + ScopeDef::ModuleDef(hir::ModuleDef::Module(_)) => { |
| 110 | + acc.add_resolution(ctx, name, res); |
| 111 | + } |
| 112 | + ScopeDef::ModuleDef(hir::ModuleDef::Adt(hir::Adt::Enum(e))) => { |
| 113 | + // exclude prelude enum |
| 114 | + let is_builtin = |
| 115 | + res.krate(ctx.db).map_or(false, |krate| krate.is_builtin(ctx.db)); |
| 116 | + |
| 117 | + if !is_builtin { |
| 118 | + let item = CompletionItem::new( |
| 119 | + CompletionItemKind::SymbolKind(SymbolKind::Enum), |
| 120 | + ctx.source_range(), |
| 121 | + format!("{}::", e.name(ctx.db)), |
| 122 | + ); |
| 123 | + acc.add(item.build()); |
| 124 | + } |
| 125 | + } |
| 126 | + _ => {} |
| 127 | + }; |
111 | 128 | });
|
112 | 129 | acc.add_nameref_keywords_with_colon(ctx);
|
113 | 130 | }
|
|
0 commit comments