(&mut self)
| 34 | } |
| 35 | |
| 36 | pub fn handle_backspace(&mut self) { |
| 37 | self.text_input.handle_backspace(); |
| 38 | self.refresh_command_menu(); |
| 39 | } |
| 40 | |
| 41 | pub fn move_cursor_left(&mut self) { |
| 42 | self.text_input.move_cursor_left(); |
nothing calls this directly
no test coverage detected