(self)
| 158 | |
| 159 | class isearch_cancel(commands.Command): |
| 160 | def do(self) -> None: |
| 161 | r = self.reader |
| 162 | r.isearch_direction = ISEARCH_DIRECTION_NONE |
| 163 | r.pop_input_trans() |
| 164 | r.select_item(r.isearch_start[0]) |
| 165 | r.pos = r.isearch_start[1] |
| 166 | r.dirty = True |
| 167 | |
| 168 | |
| 169 | class isearch_add_character(commands.Command): |
nothing calls this directly
no test coverage detected