helix/helix-core/src/lib.rs

17 lines
361 B
Rust

#![allow(unused)]
pub mod commands;
pub mod graphemes;
pub mod language_mode;
mod selection;
pub mod state;
mod transaction;
pub use ropey::{Rope, RopeSlice};
pub use tendril::StrTendril as Tendril;
pub use selection::Range as SelectionRange;
pub use selection::Selection;
pub use state::State;
pub use transaction::{Assoc, Change, ChangeSet, Transaction};