refactor: merge completion stuff (#1074)

* dev: move two syntax completion to ext

* feat: move mode completion in ext.rs

* dev: clean code

* refactor: merge completion stuff

* test: update snapshot
This commit is contained in:
Myriad-Dreamin 2024-12-27 13:00:38 +08:00 committed by GitHub
parent 1059ea7e66
commit 9c8d1461b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
35 changed files with 1765 additions and 1733 deletions

View file

@ -15,9 +15,9 @@ pub mod syntax;
pub mod ty;
mod upstream;
pub use analysis::{LocalContext, LocalContextGuard, LspWorldExt};
pub use analysis::{CompletionFeat, LocalContext, LocalContextGuard, LspWorldExt};
pub use snippet::PostfixSnippet;
pub use upstream::{with_vm, CompletionFeat};
pub use upstream::with_vm;
mod entry;
pub use entry::*;