Expand description
Ropey-backed text buffer module.
This module is split across multiple files to keep each concern small:
pos.rs: logical positions and selectionsedit.rs: edit representation (char-indexed)text_buffer.rs: theTextBufferimplementation (backed byropey::Rope)util.rs: internal helper functionstests.rs: unit testsprelude.rs: convenience re-exports for downstream crates
Re-exports§
pub use text_buffer::TextBuffer;
Modules§
- prelude
- Convenience re-exports for the
buffermodule. - text_
buffer - Split implementation of the Ropey-backed
TextBuffer.