wsx 0.16.2

TUI workspace manager — git worktrees + tmux sessions in one tree
#[derive(Debug, Clone, PartialEq)]
pub enum Action {
    Quit,
    NavigateUp,
    NavigateDown,
    NavigateLeft,
    NavigateRight,
    Select,
    AddProject,
    AddWorktree,
    AddSession,
    Delete,
    Clean,
    Edit,
    SetAlias,
    Refresh,
    Help,
    ConfirmYes,
    NextAttention,
    PrevAttention,
    DismissAttention,
    NextActive,
    PrevActive,
    NextIdle,
    PrevIdle,
    SendCommand,
    SendCtrlC,
    EnterMove,
    JumpProjectDown,
    JumpProjectUp,
    SearchStart,
    GitPopup,
    TabPrev,
    TabNext,
    TabManager,
    InputChar(char),
    InputBackspace,
    InputTab,
    InputBackTab,
    InputEscape,
    MouseClick { col: u16, row: u16 },
    Resize,
    None,
}