Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/src/handlers.rs')
-rw-r--r--helix-view/src/handlers.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-view/src/handlers.rs b/helix-view/src/handlers.rs
index 258ed89e..30a6ff9c 100644
--- a/helix-view/src/handlers.rs
+++ b/helix-view/src/handlers.rs
@@ -1,5 +1,6 @@
use completion::{CompletionEvent, CompletionHandler};
use helix_event::send_blocking;
+use spelling::SpellingHandler;
use tokio::sync::mpsc::Sender;
use crate::handlers::lsp::SignatureHelpInvoked;
@@ -9,6 +10,7 @@ pub mod completion;
pub mod dap;
pub mod diagnostics;
pub mod lsp;
+pub mod spelling;
#[derive(Debug)]
pub enum AutoSaveEvent {
@@ -22,6 +24,7 @@ pub struct Handlers {
pub signature_hints: Sender<lsp::SignatureHelpEvent>,
pub auto_save: Sender<AutoSaveEvent>,
pub document_colors: Sender<lsp::DocumentColorsEvent>,
+ pub spelling: SpellingHandler,
}
impl Handlers {