(self)
| 189 | |
| 190 | class isearch_forwards(commands.Command): |
| 191 | def do(self) -> None: |
| 192 | r = self.reader |
| 193 | r.isearch_direction = ISEARCH_DIRECTION_FORWARDS |
| 194 | r.isearch_next() |
| 195 | |
| 196 | |
| 197 | class isearch_backwards(commands.Command): |
nothing calls this directly
no test coverage detected