aboutsummaryrefslogtreecommitdiff
path: root/helix-event/src/lib.rs
blob: 9c082b93a4748f03dc69d9f1e49c1a1b5d1f35e0 (plain) (blame)
1
2
3
4
5
6
7
8
//! `helix-event` contains systems that allow (often async) communication between
//! different editor components without strongly coupling them. Currently this
//! crate only contains some smaller facilities but the intend is to add more
//! functionality in the future ( like a generic hook system)

pub use redraw::{lock_frame, redraw_requested, request_redraw, start_frame, RenderLockGuard};

mod redraw;