Set focus to the previous flow.
(self)
| 290 | |
| 291 | @command.command("view.focus.prev") |
| 292 | def focus_prev(self) -> None: |
| 293 | """ |
| 294 | Set focus to the previous flow. |
| 295 | """ |
| 296 | if self.focus.index is not None: |
| 297 | idx = self.focus.index - 1 |
| 298 | if self.inbounds(idx): |
| 299 | self.focus.flow = self[idx] |
| 300 | else: |
| 301 | pass |
| 302 | |
| 303 | # Order |
| 304 | @command.command("view.order.options") |