helix/helix-view/src/handlers.rs
2024-01-23 11:20:19 +09:00

12 lines
203 B
Rust

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