(self, select = False)
| 288 | def move_cursor_right(self, select = False): |
| 289 | self.move_cursor("NEXT_CHARACTER", select) |
| 290 | def move_cursor_left(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) |
no test coverage detected