siggy 1.7.1

Terminal-based Signal messenger client with vim keybindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// State for the forward message picker overlay.
#[derive(Default)]
pub struct ForwardOverlayState {
    /// Forward message picker overlay visible
    pub show: bool,
    /// Cursor position in forward picker
    pub index: usize,
    /// Type-to-filter text for forward picker
    pub filter: String,
    /// Filtered list of (conv_id, display_name)
    pub filtered: Vec<(String, String)>,
    /// Body of the message being forwarded
    pub body: String,
}