1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/// Every user interaction produces an Action. UI never directly calls git/tmux. #[derive(Debug, Clone)] pub enum Action { // Navigation OpenRepo, EnterRepo, OpenBranch, GoBack, Quit, // Search SearchPush(char), SearchPop, MoveSelection(i32), // UI StartNewBranchFlow, ShowError(String), ClearError, }