41 lines
1.2 KiB
Rust
41 lines
1.2 KiB
Rust
use std::sync::Arc;
|
|
|
|
use arc_swap::ArcSwap;
|
|
use helix_event::AsyncHook;
|
|
|
|
use crate::config::Config;
|
|
use crate::events;
|
|
use crate::handlers::auto_save::AutoSaveHandler;
|
|
use crate::handlers::diagnostics::PullDiagnosticsHandler;
|
|
use crate::handlers::signature_help::SignatureHelpHandler;
|
|
|
|
pub use helix_view::handlers::Handlers;
|
|
|
|
mod auto_save;
|
|
pub mod completion;
|
|
pub mod diagnostics;
|
|
mod signature_help;
|
|
mod snippet;
|
|
|
|
pub fn setup(config: Arc<ArcSwap<Config>>) -> Handlers {
|
|
events::register();
|
|
|
|
let event_tx = completion::CompletionHandler::new(config).spawn();
|
|
let signature_hints = SignatureHelpHandler::new().spawn();
|
|
let auto_save = AutoSaveHandler::new().spawn();
|
|
let pull_diagnostics = PullDiagnosticsHandler::new().spawn();
|
|
|
|
let handlers = Handlers {
|
|
completions: helix_view::handlers::completion::CompletionHandler::new(event_tx),
|
|
signature_hints,
|
|
auto_save,
|
|
pull_diagnostics,
|
|
};
|
|
|
|
completion::register_hooks(&handlers);
|
|
signature_help::register_hooks(&handlers);
|
|
auto_save::register_hooks(&handlers);
|
|
diagnostics::register_hooks(&handlers);
|
|
snippet::register_hooks(&handlers);
|
|
handlers
|
|
}
|