dev: recover module completion (#151)

* dev: recover module completion

* dev: update snapshot
This commit is contained in:
Myriad-Dreamin 2024-04-04 09:38:47 +08:00 committed by GitHub
parent bd610b2323
commit d256ff0556
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 4 deletions

View file

@ -879,9 +879,15 @@ fn code_completions(ctx: &mut CompletionContext, hash: bool) {
);
ctx.snippet_completion(
"import expression",
"import module",
"import \"${}\"",
"Imports module from another file.",
);
ctx.snippet_completion(
"import module by expression",
"import ${}",
"Imports items from another file.",
"Imports items by expression.",
);
ctx.snippet_completion(