Move keyword expressions to expr completions module

This commit is contained in:
Lukas Wirth 2022-05-10 15:00:58 +02:00
parent 40bb8006cd
commit b2abe1bca1
8 changed files with 84 additions and 99 deletions

View file

@ -173,7 +173,7 @@ pub fn completions(
completions::r#type::complete_type_path(acc, ctx);
completions::r#type::complete_inferred_type(acc, ctx);
completions::use_::complete_use_tree(acc, ctx);
completions::vis::complete_vis(acc, ctx);
completions::vis::complete_vis_path(acc, ctx);
}
Some(acc)