1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-06-03 08:26:10 +02:00
helix/helix-core/src/lib.rs
2020-09-17 16:32:40 +09:00

21 lines
420 B
Rust

#![allow(unused)]
pub mod commands;
pub mod graphemes;
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 as SelectionRange;
pub use selection::Selection;
pub use syntax::Syntax;
pub use state::State;
pub use transaction::{Assoc, Change, ChangeSet, Transaction};