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;
9pub mod path_serde;
10mod range;
11pub mod selection;
12pub mod worker;
13
14pub use buffer::{
15 Buffer, BufferSeed, Change, ChangeOrigin, EditError, HistoryMove, InputEdit,
16 PreparedReplacements, Replacement, SaveReceipt, SaveRequest, SystemEdit, UserEdit,
17};
18pub use range::{MotionShape, Range};
19
20#[cfg(test)]
21mod persistence_tests;