mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
10 lines
345 B
Rust
10 lines
345 B
Rust
//! ### 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.
|
|
|
|
/// cursor worker implementation
|
|
pub(crate) mod worker;
|
|
|
|
/// cursor controller implementation
|
|
pub mod controller;
|
|
pub use controller::CursorController as Controller;
|