codemp/src/cursor/mod.rs

14 lines
352 B
Rust
Raw Normal View History

2023-08-20 00:46:55 +02:00
//! ### cursor
//!
//! ![demo gif of early cursor sync in action](https://cdn.alemi.dev/codemp/demo-nvim.gif)
2023-08-20 00:46:55 +02:00
//!
//! each user holds a cursor, which consists of multiple highlighted region
//! on a specific buffer
pub(crate) mod worker;
2023-08-20 00:46:55 +02:00
/// cursor controller implementation
pub mod controller;
pub use controller::CursorController as Controller;