tui-lipan 0.1.0

Opinionated, component-based TUI framework for Rust - declarative components, reconciliation, layout engine, focus, overlays, and rich widgets on top of ratatui.
Documentation
1
2
3
4
5
6
7
8
9
/// Behavior used for triple-click text selection.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
pub enum TripleClickSelectionMode {
    /// Select the current logical line or rendered visual line.
    #[default]
    Line,
    /// Select the current paragraph bounded by blank lines.
    Paragraph,
}