1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-06-07 09:46:06 +02:00
helix/helix-core/src/lib.rs
2020-09-29 01:00:35 +09:00

22 lines
401 B
Rust

#![allow(unused)]
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};