* transition to nucleo for fuzzy matching * drop flakey test case since the picker streams in results now any test that relies on the picker containing results is potentially flakely * use crates.io version of nucleo * Fix typo in commands.rs Co-authored-by: Skyler Hawthorne <skyler@dead10ck.com> --------- Co-authored-by: Skyler Hawthorne <skyler@dead10ck.com>
8 lines
409 B
Rust
8 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;
|