strop-core 0.13.0

strop editor core: rope buffer, byte-offset positions, edit ops
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! strop-core: the buffer. A rope, byte-offset positions, edit ops.
//! No UI, no modes, no grammar — the thing everything else edits.

mod buffer;
pub mod history;
pub mod id;
pub mod layout;
mod range;
pub mod selection;

pub use buffer::{Buffer, InputEdit};
pub use range::{MotionShape, Range};