codemp/src/buffer/mod.rs

15 lines
456 B
Rust
Raw Normal View History

2023-08-20 00:46:55 +02:00
//! ### buffer
//!
//! ![demo gif of early buffer sync in action](https://cdn.alemi.dev/codemp/demo-vscode.gif)
2023-08-20 00:46:55 +02:00
//!
//! a buffer is a container fo text edited by users.
//! this module contains buffer-related operations and helpers to create Operation Sequences
//! (the underlying chunks of changes sent over the wire)
/// buffer controller implementation
pub mod controller;
2023-08-20 00:46:55 +02:00
pub(crate) mod worker;
pub use controller::BufferController as Controller;