(&mut self)
| 49 | } |
| 50 | |
| 51 | pub fn set_cursor_home(&mut self) { |
| 52 | self.text_input.set_cursor_home(); |
| 53 | self.refresh_command_menu(); |
| 54 | } |
| 55 | |
| 56 | pub fn set_cursor_end(&mut self) { |
| 57 | self.text_input.set_cursor_end(); |
nothing calls this directly
no test coverage detected