reovim-client-model 0.14.4

Common client model for Reovim (platform-agnostic abstractions)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Synchronization types for multi-client scenarios.
//!
//! These types manage how state is synchronized between multiple
//! clients attached to the same session.

pub mod layout;
pub mod overlay;
pub mod presence;

pub use {layout::LayoutSyncMode, overlay::OverlaySyncMode, presence::PresenceTracker};