Move the cursor to reflect changes in self.pos
(self)
| 573 | self.dirty = True |
| 574 | |
| 575 | def update_cursor(self) -> None: |
| 576 | """Move the cursor to reflect changes in self.pos""" |
| 577 | self.cxy = self.pos2xy() |
| 578 | trace("update_cursor({pos}) = {cxy}", pos=self.pos, cxy=self.cxy) |
| 579 | self.console.move_cursor(*self.cxy) |
| 580 | |
| 581 | def after_command(self, cmd: Command) -> None: |
| 582 | """This function is called to allow post command cleanup.""" |
no test coverage detected