diff options
Diffstat (limited to 'helix-view/src/handlers.rs')
-rw-r--r-- | helix-view/src/handlers.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/helix-view/src/handlers.rs b/helix-view/src/handlers.rs new file mode 100644 index 00000000..ae3eb545 --- /dev/null +++ b/helix-view/src/handlers.rs @@ -0,0 +1,12 @@ +use std::sync::Arc; + +use helix_event::send_blocking; +use tokio::sync::mpsc::Sender; + +use crate::handlers::lsp::SignatureHelpInvoked; +use crate::Editor; + +pub mod dap; +pub mod lsp; + +pub struct Handlers {} |