(self)
| 64 | |
| 65 | class previous_history(commands.Command): |
| 66 | def do(self) -> None: |
| 67 | r = self.reader |
| 68 | if r.historyi == 0: |
| 69 | r.error("start of history list") |
| 70 | return |
| 71 | r.select_item(r.historyi - 1) |
| 72 | |
| 73 | |
| 74 | class history_search_backward(commands.Command): |
nothing calls this directly
no test coverage detected