tab-command 0.5.7

the cli command module for the tab terminal multiplexer
Documentation
#[derive(Debug, Clone)]
pub enum FuzzyEvent {
    MoveLeft,
    MoveRight,
    MoveUp,
    MoveDown,
    MoveFirst,
    MoveLast,
    Insert(char),
    Delete,
    Enter,
    Resize(u16, u16),
}

#[derive(Debug, Clone)]
pub struct FuzzySelection(pub String);

#[derive(Debug, Clone)]
pub struct FuzzyShutdown;