1#[derive(Debug, Clone)] 2pub enum BrowserCommand { 3 None, 4 Exit, 5 RequestRedraw, 6 RenameWindowTitle, 7 OpenNewWindow { tab_id: usize }, 8}