(self, cmd: Command)
| 277 | (r'\t', 'complete'),) |
| 278 | |
| 279 | def after_command(self, cmd: Command) -> None: |
| 280 | super().after_command(cmd) |
| 281 | if not isinstance(cmd, (complete, self_insert)): |
| 282 | self.cmpltn_reset() |
| 283 | |
| 284 | def calc_screen(self) -> list[str]: |
| 285 | screen = super().calc_screen() |
nothing calls this directly
no test coverage detected