Skip to content

Commit 9ef01d0

Browse files
committed
Auto merge of rust-lang#12490 - yue4u:fix/show-enum-in-fresh-use-tree, r=Veykril
fix: complete non-std enum at the start of `use` completions close: rust-lang#12421
2 parents 7b663a3 + 2942863 commit 9ef01d0

File tree

2 files changed

+30
-8
lines changed

2 files changed

+30
-8
lines changed

crates/ide-completion/src/completions/use_.rs

+24-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
//! Completion for use trees
22
33
use hir::ScopeDef;
4-
use ide_db::FxHashSet;
4+
use ide_db::{FxHashSet, SymbolKind};
55
use syntax::{ast, AstNode};
66

77
use crate::{
88
context::{CompletionContext, NameRefContext, PathCompletionCtx, PathKind, PathQualifierCtx},
99
item::Builder,
10-
CompletionRelevance, Completions,
10+
CompletionItem, CompletionItemKind, CompletionRelevance, Completions,
1111
};
1212

1313
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)
101101
cov_mark::hit!(use_tree_crate_roots_only);
102102
acc.add_crate_roots(ctx);
103103
}
104-
// only show modules in a fresh UseTree
104+
// only show modules and non-std enum in a fresh UseTree
105105
None => {
106-
cov_mark::hit!(unqualified_path_only_modules_in_import);
106+
cov_mark::hit!(unqualified_path_selected_only);
107107
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+
};
111128
});
112129
acc.add_nameref_keywords_with_colon(ctx);
113130
}

crates/ide-completion/src/tests/use_tree.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,23 @@ fn check(ra_fixture: &str, expect: Expect) {
1010

1111
#[test]
1212
fn use_tree_start() {
13-
cov_mark::check!(unqualified_path_only_modules_in_import);
13+
cov_mark::check!(unqualified_path_selected_only);
1414
check(
1515
r#"
1616
//- /lib.rs crate:main deps:other_crate
1717
use f$0
1818
1919
struct Foo;
20+
enum FooBar {
21+
Foo,
22+
Bar
23+
}
2024
mod foo {}
2125
//- /other_crate/lib.rs crate:other_crate
2226
// nothing here
2327
"#,
2428
expect![[r#"
29+
en FooBar::
2530
md foo
2631
md other_crate
2732
kw crate::

0 commit comments

Comments
 (0)