Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/handlers.rs')
| -rw-r--r-- | helix-term/src/handlers.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/handlers.rs b/helix-term/src/handlers.rs index b27e34e2..31e15330 100644 --- a/helix-term/src/handlers.rs +++ b/helix-term/src/handlers.rs @@ -16,6 +16,7 @@ mod auto_save; pub mod completion; mod diagnostics; mod signature_help; +mod snippet; pub fn setup(config: Arc<ArcSwap<Config>>) -> Handlers { events::register(); @@ -34,5 +35,6 @@ pub fn setup(config: Arc<ArcSwap<Config>>) -> Handlers { signature_help::register_hooks(&handlers); auto_save::register_hooks(&handlers); diagnostics::register_hooks(&handlers); + snippet::register_hooks(&handlers); handlers } |