helix/helix-view/src/handlers.rs

13 lines
203 B
Rust
Raw Normal View History

2023-08-17 08:45:17 +08:00
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 {}