mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
409 B
Rust
9 lines
409 B
Rust
//! `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;
|