Add hook/event system

This commit is contained in:
Pascal Kuthe 2023-12-01 00:03:26 +01:00 committed by Blaž Hrastnik
parent 7d7ace551c
commit 13ed4f6c47
26 changed files with 1023 additions and 49 deletions

View file

@ -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 {}