ratatui_toolkit/widgets/markdown_widget/state/vim_state/constructors/
new.rs

1//! Constructor for VimState.
2
3use crate::widgets::markdown_widget::state::vim_state::VimState;
4
5impl VimState {
6    /// Create a new vim state with defaults.
7    pub fn new() -> Self {
8        Self {
9            pending_g_time: None,
10        }
11    }
12}