1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-06-07 21:56:04 +02:00
helix/helix-core/src/lib.rs
2020-09-22 18:27:37 +09:00

21 lines
400 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};