Blaž Hrastnik 935cfeae57 Split parts of helix-term into helix-view.
It still largely depends on term for some types but I plan to change
that later.
2020-09-21 18:24:16 +09:00

22 lines
416 B
Rust

#![allow(unused)]
pub mod config;
pub mod graphemes;
pub mod macros;
mod position;
mod selection;
pub mod state;
pub mod syntax;
mod transaction;
pub use ropey::{Rope, RopeSlice};
pub use tendril::StrTendril as Tendril;
pub use position::Position;
pub use selection::Range;
pub use selection::Selection;
pub use syntax::Syntax;
pub use state::State;
pub use transaction::{Assoc, Change, ChangeSet, Transaction};