strop-core 0.14.1

strop editor core: rope buffer, byte-offset positions, edit ops
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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 diagnostics;
pub mod history;
pub mod id;
pub mod layout;
mod range;
pub mod selection;

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

#[cfg(test)]
mod persistence_tests;