(&mut self, c: char)
| 24 | } |
| 25 | |
| 26 | pub fn handle_char(&mut self, c: char) { |
| 27 | self.text_input.handle_char(c); |
| 28 | self.refresh_command_menu(); |
| 29 | } |
| 30 | |
| 31 | pub fn handle_newline(&mut self) { |
| 32 | self.text_input.handle_newline(); |
nothing calls this directly
no test coverage detected