(self)
| 203 | |
| 204 | class isearch_end(commands.Command): |
| 205 | def do(self) -> None: |
| 206 | r = self.reader |
| 207 | r.isearch_direction = ISEARCH_DIRECTION_NONE |
| 208 | r.console.forgetinput() |
| 209 | r.pop_input_trans() |
| 210 | r.dirty = True |
| 211 | |
| 212 | |
| 213 | @dataclass |
nothing calls this directly
no test coverage detected