codemp/src/cursor/mod.rs

11 lines
345 B
Rust
Raw Normal View History

2024-09-04 21:37:35 +02:00
//! ### Cursor
//! Each user in a [crate::Workspace] holds a cursor and can move it across multiple buffers.
//! A cursor spans zero or more characters across one or more lines.
2023-08-20 00:46:55 +02:00
/// cursor worker implementation
pub(crate) mod worker;
2023-08-20 00:46:55 +02:00
/// cursor controller implementation
pub mod controller;
pub use controller::CursorController as Controller;