helix/helix-core/src/lib.rs

20 lines
384 B
Rust
Raw Normal View History

2020-06-02 09:57:01 +08:00
#![allow(unused)]
pub mod graphemes;
2020-09-17 13:57:49 +08:00
mod position;
mod selection;
2020-06-25 02:59:35 +08:00
pub mod state;
2020-09-12 18:36:49 +08:00
pub mod syntax;
mod transaction;
2020-05-20 17:14:51 +08:00
pub use ropey::{Rope, RopeSlice};
2020-05-28 13:45:44 +08:00
pub use tendril::StrTendril as Tendril;
2020-09-17 13:57:49 +08:00
pub use position::Position;
pub use selection::Range;
pub use selection::Selection;
2020-09-17 13:57:49 +08:00
pub use syntax::Syntax;
pub use state::State;
2020-05-28 13:59:50 +08:00
pub use transaction::{Assoc, Change, ChangeSet, Transaction};