mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 15:15:24 +00:00
fix: Don't trigger pattern completions when typing a wildcard pattern
This commit is contained in:
parent
6e9c963348
commit
1f028403cd
2 changed files with 17 additions and 1 deletions
|
@ -489,7 +489,11 @@ pub(super) fn complete_name(
|
|||
NameKind::Function => {
|
||||
item_list::trait_impl::complete_trait_impl_fn(acc, ctx, name);
|
||||
}
|
||||
NameKind::IdentPat(pattern_ctx) => complete_patterns(acc, ctx, pattern_ctx),
|
||||
NameKind::IdentPat(pattern_ctx) => {
|
||||
if ctx.token.kind() != syntax::T![_] {
|
||||
complete_patterns(acc, ctx, pattern_ctx)
|
||||
}
|
||||
}
|
||||
NameKind::Module(mod_under_caret) => {
|
||||
mod_::complete_mod(acc, ctx, mod_under_caret);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue