Toggle whether to show marked views only.
(self)
| 546 | |
| 547 | @command.command("view.properties.marked.toggle") |
| 548 | def toggle_marked(self) -> None: |
| 549 | """ |
| 550 | Toggle whether to show marked views only. |
| 551 | """ |
| 552 | self.show_marked = not self.show_marked |
| 553 | self._refilter() |
| 554 | |
| 555 | @command.command("view.properties.inbounds") |
| 556 | def inbounds(self, index: int) -> bool: |