(self, count, selecting)
| 614 | break |
| 615 | |
| 616 | def left(self, count, selecting): |
| 617 | if self.cursorAddr > (self.getStart() + count): |
| 618 | self.cursorAddr -= count |
| 619 | else: |
| 620 | self.cursorAddr = self.getStart() |
| 621 | self.adjustAddressAfterBackwardMovement() |
| 622 | if not selecting: |
| 623 | self.selectNone() |
| 624 | self.repositionCaret() |
| 625 | if self.selectionVisible or selecting: |
| 626 | self.viewport().update() |
| 627 | |
| 628 | def right(self, count, selecting): |
| 629 | if self.cursorAddr <= (self.getEnd() - count): |
no test coverage detected