tui-canvas 0.8.10

Form/textarea/input for TUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub(crate) enum KeybindingParadigm {
    #[default]
    Vim,
    Helix,
    Emacs,
    /// Modeless, VSCode-style editing. Behaves like the non-modal Emacs
    /// paradigm under the hood (always editing, region-style selection); the
    /// distinction exists so VSCode-specific behavior can diverge later.
    Vscode,
}

impl KeybindingParadigm {
    pub(crate) fn is_helix(self) -> bool {
        matches!(self, Self::Helix)
    }
}