aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
blob: e443168e7e5a5e97d493f7fc4fcc61d1fb3ebdbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![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};