mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-26 10:51:55 +00:00
Expose parameter in boss.py as well
This commit is contained in:
parent
a2f7aedd9c
commit
aa339a8a9f
1 changed files with 6 additions and 6 deletions
|
|
@ -532,13 +532,13 @@ class Boss:
|
|||
for window in tab:
|
||||
self.close_window(window)
|
||||
|
||||
def toggle_fullscreen(self) -> None:
|
||||
'@ac:win: Toggle the fullscreen status of the active OS Window'
|
||||
toggle_fullscreen()
|
||||
def toggle_fullscreen(self, os_window_id: int = 0) -> None:
|
||||
'@ac:win: Toggle the fullscreen status of the specified or the active OS Window'
|
||||
toggle_fullscreen(os_window_id)
|
||||
|
||||
def toggle_maximized(self) -> None:
|
||||
'@ac:win: Toggle the maximized status of the active OS Window'
|
||||
toggle_maximized()
|
||||
def toggle_maximized(self, os_window_id: int = 0) -> None:
|
||||
'@ac:win: Toggle the maximized status of the specified or the active OS Window'
|
||||
toggle_maximized(os_window_id)
|
||||
|
||||
def start(self, first_os_window_id: int) -> None:
|
||||
if not getattr(self, 'io_thread_started', False):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue