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.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/handlers.rs b/helix-term/src/handlers.rs
index 9c46a650..25cab6a3 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 document_colors;
+mod prompt;
mod signature_help;
mod snippet;
@@ -43,5 +44,6 @@ pub fn setup(config: Arc<ArcSwap<Config>>) -> Handlers {
diagnostics::register_hooks(&handlers);
snippet::register_hooks(&handlers);
document_colors::register_hooks(&handlers);
+ prompt::register_hooks(&handlers);
handlers
}