59 lines
2.2 KiB
Python
59 lines
2.2 KiB
Python
#!/usr/bin/env python
|
|
# License: GPLv3 Copyright: 2020, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
from typing import TYPE_CHECKING, Optional, Union
|
|
|
|
from .base import (
|
|
MATCH_TAB_OPTION, MATCH_WINDOW_OPTION, ArgsType, Boss, MatchError,
|
|
PayloadGetType, PayloadType, RCOptions, RemoteCommand, ResponseType,
|
|
Window
|
|
)
|
|
|
|
if TYPE_CHECKING:
|
|
from kitty.cli_stub import DetachWindowRCOptions as CLIOptions
|
|
|
|
|
|
class DetachWindow(RemoteCommand):
|
|
|
|
'''
|
|
match: Which window to detach
|
|
target: Which tab to move the detached window to
|
|
self: Boolean indicating whether to detach the window the command is run in
|
|
'''
|
|
|
|
short_desc = 'Detach a window and place it in a different/new tab'
|
|
desc = (
|
|
'Detach the specified window and either move it into a new tab, a new OS window'
|
|
' or add it to the specified tab. Use the special value :code:`new` for --target-tab'
|
|
' to move to a new tab. If no target tab is specified the window is moved to a new OS window.'
|
|
)
|
|
options_spec = MATCH_WINDOW_OPTION + '\n\n' + MATCH_TAB_OPTION.replace('--match -m', '--target-tab -t') + '''\n
|
|
--self
|
|
type=bool-set
|
|
If specified detach the window this command is run in, rather than the active window.
|
|
'''
|
|
argspec = ''
|
|
|
|
def message_to_kitty(self, global_opts: RCOptions, opts: 'CLIOptions', args: ArgsType) -> PayloadType:
|
|
return {'match': opts.match, 'target': opts.target_tab, 'self': opts.self}
|
|
|
|
def response_from_kitty(self, boss: Boss, window: Optional[Window], payload_get: PayloadGetType) -> ResponseType:
|
|
windows = self.windows_for_match_payload(boss, window, payload_get)
|
|
match = payload_get('target_tab')
|
|
target_tab_id: Optional[Union[str, int]] = None
|
|
newval: Union[str, int] = 'new'
|
|
if match:
|
|
if match == 'new':
|
|
target_tab_id = newval
|
|
else:
|
|
tabs = tuple(boss.match_tabs(match))
|
|
if not tabs:
|
|
raise MatchError(match, 'tabs')
|
|
target_tab_id = tabs[0].id
|
|
kwargs = {'target_os_window_id': newval} if target_tab_id is None else {'target_tab_id': target_tab_id}
|
|
for window in windows:
|
|
boss._move_window_to(window=window, **kwargs)
|
|
|
|
|
|
detach_window = DetachWindow()
|