1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
use helix_event::{events, register_event}; use helix_view::document::Mode; use helix_view::events::{ DiagnosticsDidChange, DocumentDidChange, DocumentFocusLost, SelectionDidChange, }; use crate::commands; use crate::keymap::MappableCommand; events! { OnModeSwitch<'a, 'cx> { old_mode: Mode, new_mode: Mode, cx: &'a mut commands::Context<'cx> } PostInsertChar<'a, 'cx> { c: char, cx: &'a mut commands::Context<'cx> } PostCommand<'a, 'cx> { command: & 'a MappableCommand, cx: &'a mut commands::Context<'cx> } } pub fn register() { register_event::<OnModeSwitch>(); register_event::<PostInsertChar>(); register_event::<PostCommand>(); register_event::<DocumentDidChange>(); register_event::<DocumentFocusLost>(); register_event::<SelectionDidChange>(); register_event::<DiagnosticsDidChange>(); }