(self)
| 196 | |
| 197 | class isearch_backwards(commands.Command): |
| 198 | def do(self) -> None: |
| 199 | r = self.reader |
| 200 | r.isearch_direction = ISEARCH_DIRECTION_BACKWARDS |
| 201 | r.isearch_next() |
| 202 | |
| 203 | |
| 204 | class isearch_end(commands.Command): |
nothing calls this directly
no test coverage detected