mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 13:51:31 +00:00
fix: Fix qualified path completion not completing macros
This commit is contained in:
parent
f87debcf87
commit
2fbd52c78f
2 changed files with 4 additions and 0 deletions
|
@ -223,6 +223,7 @@ pub(crate) fn complete_qualified_path(acc: &mut Completions, ctx: &CompletionCon
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
hir::PathResolution::Macro(mac) => acc.add_macro(ctx, None, mac),
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -122,11 +122,14 @@ use foo::$0
|
||||||
mod foo {
|
mod foo {
|
||||||
struct Private;
|
struct Private;
|
||||||
pub struct Foo;
|
pub struct Foo;
|
||||||
|
macro_rules! foo_ { {} => {} }
|
||||||
|
pub use foo_ as foo;
|
||||||
}
|
}
|
||||||
struct Bar;
|
struct Bar;
|
||||||
"#,
|
"#,
|
||||||
expect![[r#"
|
expect![[r#"
|
||||||
st Foo
|
st Foo
|
||||||
|
ma foo! macro_rules! foo_
|
||||||
"#]],
|
"#]],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue