(&mut self)
| 82 | } |
| 83 | |
| 84 | pub fn apply_command_menu_selection(&mut self) -> Option<String> { |
| 85 | let cmd = self.command_menu.apply_selection()?; |
| 86 | self.text_input.clear(); |
| 87 | self.refresh_command_menu(); |
| 88 | Some(cmd) |
| 89 | } |
| 90 | |
| 91 | pub fn history_prev(&mut self) { |
| 92 | if self.input_history.is_empty() { |
no test coverage detected