A comprehensive collection of reusable TUI components for ratatui including resizable splits, tree views, markdown rendering, toast notifications, dialogs, and terminal embedding
//! Minimal Vim navigation state shared by document viewers.
/// Tracks multi-key Vim navigation prefixes.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]pubstructVimState{/// Whether a `g` prefix is waiting for a second key.
pubpending_g:bool,
}implVimState{/// Clears pending Vim prefixes.
pubfnclear(&mutself){self.pending_g =false;}}