diff options
author | Lukas Wirth <[email protected]> | 2021-06-17 12:59:31 +0100 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2021-06-17 12:59:31 +0100 |
commit | 9353f36516e5b4026ce3a181d578c3a63876a18f (patch) | |
tree | 2909822a4406e05f66a79b180ce1d2327062b5f1 /crates/ide_completion/src/completions | |
parent | 2225db2eb48bd8c8fdf399c50652d3f95c851ace (diff) |
Fix incorrect completions in empty braced use statement
Diffstat (limited to 'crates/ide_completion/src/completions')
-rw-r--r-- | crates/ide_completion/src/completions/unqualified_path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_completion/src/completions/unqualified_path.rs b/crates/ide_completion/src/completions/unqualified_path.rs index 4bafc1bf8..6f96eceb9 100644 --- a/crates/ide_completion/src/completions/unqualified_path.rs +++ b/crates/ide_completion/src/completions/unqualified_path.rs | |||
@@ -25,7 +25,7 @@ pub(crate) fn complete_unqualified_path(acc: &mut Completions, ctx: &CompletionC | |||
25 | return; | 25 | return; |
26 | } | 26 | } |
27 | 27 | ||
28 | if ctx.expects_new_use_tree() { | 28 | if ctx.in_use_tree() { |
29 | // only show modules in a fresh UseTree | 29 | // only show modules in a fresh UseTree |
30 | cov_mark::hit!(only_completes_modules_in_import); | 30 | cov_mark::hit!(only_completes_modules_in_import); |
31 | ctx.scope.process_all_names(&mut |name, res| { | 31 | ctx.scope.process_all_names(&mut |name, res| { |