aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
blob: c7c020d6d37fc556e27541700165ba338869e67e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(unused)]
pub mod commands;
mod graphemes;
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};