(&mut self)
| 29 | } |
| 30 | |
| 31 | pub fn handle_newline(&mut self) { |
| 32 | self.text_input.handle_newline(); |
| 33 | self.refresh_command_menu(); |
| 34 | } |
| 35 | |
| 36 | pub fn handle_backspace(&mut self) { |
| 37 | self.text_input.handle_backspace(); |
nothing calls this directly
no test coverage detected