mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 06:41:48 +00:00
move to a seperate complete_use_tree_keyword mod
This commit is contained in:
parent
22ea00d5ff
commit
9895529d5c
3 changed files with 77 additions and 64 deletions
|
@ -7,6 +7,7 @@ mod complete_keyword;
|
|||
mod complete_snippet;
|
||||
mod complete_path;
|
||||
mod complete_scope;
|
||||
mod complete_use_tree;
|
||||
|
||||
use ra_db::SyntaxDatabase;
|
||||
|
||||
|
@ -45,6 +46,7 @@ pub(crate) fn completions(
|
|||
complete_path::complete_path(&mut acc, &ctx)?;
|
||||
complete_scope::complete_scope(&mut acc, &ctx)?;
|
||||
complete_dot::complete_dot(&mut acc, &ctx)?;
|
||||
complete_use_tree::complete_use_tree_keyword(&mut acc, &ctx);
|
||||
|
||||
Ok(Some(acc))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue