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 diagnostics;
6pub mod history;
7pub mod id;
8pub mod layout;
9mod range;
10pub mod selection;
11
12pub use buffer::{Buffer, InputEdit};
13pub use range::{MotionShape, Range};
14
15#[cfg(test)]
16mod persistence_tests;