Execute the currently focused key binding.
(self)
| 742 | |
| 743 | @command.command("console.key.edit.focus") |
| 744 | def key_edit_focus(self) -> None: |
| 745 | """ |
| 746 | Execute the currently focused key binding. |
| 747 | """ |
| 748 | b = self._keyfocus() |
| 749 | self.console_command( |
| 750 | "console.key.bind", |
| 751 | ",".join(b.contexts), |
| 752 | b.key, |
| 753 | b.command, |
| 754 | ) |
| 755 | |
| 756 | def running(self): |
| 757 | self.started = True |
nothing calls this directly
no test coverage detected