//! Buffer management — document editing, undo/redo history, macros, cursor motions,
//! and a managed buffer system with Tree-sitter integration.
//!
//! The central types are:
//! - [`Document`] — a text document backed by a rope with history-aware editing
//! - [`ManagedBuffer`] — a buffer pairing text content with its syntax tree
//! - [`BufferManager`] — a registry that caches and deduplicates buffers by path
pub use Document;
pub use BufferManager;
pub use ;