(self, select = False)
| 286 | |
| 287 | # note: this may change the character index more than one (if there is TAB) |
| 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 |
nothing calls this directly
no test coverage detected