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 3b2b4c03..c421c49f 100644 --- a/helix-term/src/handlers.rs +++ b/helix-term/src/handlers.rs @@ -24,6 +24,7 @@ mod document_links; mod prompt; mod signature_help; mod snippet; +mod workspace_trust; pub fn setup(config: Arc<ArcSwap<Config>>) -> Handlers { events::register(); @@ -58,5 +59,6 @@ pub fn setup(config: Arc<ArcSwap<Config>>) -> Handlers { document_colors::register_hooks(&handlers); document_links::register_hooks(&handlers); prompt::register_hooks(&handlers); + workspace_trust::register_hooks(&handlers); handlers } |