Move the cursor to reflect changes in self.pos
(self)
| 617 | self.dirty = True |
| 618 | |
| 619 | def update_cursor(self) -> None: |
| 620 | """Move the cursor to reflect changes in self.pos""" |
| 621 | self.cxy = self.pos2xy() |
| 622 | self.console.move_cursor(*self.cxy) |
| 623 | |
| 624 | def after_command(self, cmd: Command) -> None: |
| 625 | """This function is called to allow post command cleanup.""" |
no test coverage detected