strop_core/lib.rs
1//! strop-core: the buffer. A rope, byte-offset positions, edit ops.
2//! No UI, no modes, no grammar — the thing everything else edits.
3
4mod buffer;
5pub mod history;
6pub mod id;
7pub mod layout;
8mod range;
9pub mod selection;
10
11pub use buffer::{Buffer, InputEdit};
12pub use range::{MotionShape, Range};