feat: auto complete parameters after completing a function (#150)

* feat: auto complete parameters after completing a function

* dev: update snapshot

* dev: update completion snapshot
This commit is contained in:
Myriad-Dreamin 2024-04-02 18:50:02 +08:00 committed by GitHub
parent d71dd38b98
commit bd610b2323
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 69 additions and 24 deletions

View file

@ -250,6 +250,7 @@ fn complete_path(
kind: CompletionKind::Folder,
apply: None,
detail: None,
command: None,
});
} else {
module_completions.push(Completion {
@ -257,6 +258,7 @@ fn complete_path(
kind: CompletionKind::Module,
apply: None,
detail: None,
command: None,
});
}
}