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 18297bfe..ff99e7fd 100644 --- a/helix-term/src/handlers.rs +++ b/helix-term/src/handlers.rs @@ -18,6 +18,7 @@ mod auto_save; pub mod completion; pub mod diagnostics; mod document_colors; +mod document_highlight; mod prompt; mod signature_help; mod snippet; @@ -46,6 +47,7 @@ pub fn setup(config: Arc<ArcSwap<Config>>) -> Handlers { helix_view::handlers::register_hooks(&handlers); completion::register_hooks(&handlers); signature_help::register_hooks(&handlers); + document_highlight::register_hooks(&handlers); auto_save::register_hooks(&handlers); diagnostics::register_hooks(&handlers); snippet::register_hooks(&handlers); |