Returns true if view is in marked mode.
(self)
| 539 | |
| 540 | @command.command("view.properties.marked") |
| 541 | def get_marked(self) -> bool: |
| 542 | """ |
| 543 | Returns true if view is in marked mode. |
| 544 | """ |
| 545 | return self.show_marked |
| 546 | |
| 547 | @command.command("view.properties.marked.toggle") |
| 548 | def toggle_marked(self) -> None: |
no outgoing calls