(self, select = False)
| 291 | self.move_cursor("PREVIOUS_CHARACTER", select) |
| 292 | |
| 293 | def move_cursor_up(self, select = False): |
| 294 | self.move_cursor("PREVIOUS_LINE", select) |
| 295 | def move_cursor_down(self, select = False): |
| 296 | self.move_cursor("NEXT_LINE", select) |
| 297 |
nothing calls this directly
no test coverage detected