From 13ed4f6c4748019787d24c2b686d417b71604242 Mon Sep 17 00:00:00 2001 From: Pascal Kuthe Date: Fri, 1 Dec 2023 00:03:26 +0100 Subject: Add hook/event system --- helix-view/src/handlers.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 helix-view/src/handlers.rs (limited to 'helix-view/src/handlers.rs') 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 {} -- cgit v1.2.3-70-g09d2