mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Add hook/event system
This commit is contained in:
parent
7d7ace551c
commit
13ed4f6c47
26 changed files with 1023 additions and 49 deletions
12
helix-view/src/handlers.rs
Normal file
12
helix-view/src/handlers.rs
Normal 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 {}
|
Loading…
Add table
Add a link
Reference in a new issue