mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-02-01 11:34:59 +01:00
38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
# License: GPLv3 Copyright: 2020, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
from .base import MATCH_WINDOW_OPTION, ArgsType, Boss, PayloadGetType, PayloadType, RCOptions, RemoteCommand, ResponseType, Window
|
|
|
|
if TYPE_CHECKING:
|
|
from kitty.cli_stub import RemoveMarkerRCOptions as CLIOptions
|
|
|
|
|
|
class RemoveMarker(RemoteCommand):
|
|
|
|
protocol_spec = __doc__ = '''
|
|
match/str: Which window to remove the marker from
|
|
self/bool: Boolean indicating whether to detach the window the command is run in
|
|
'''
|
|
|
|
short_desc = 'Remove the currently set marker, if any.'
|
|
options_spec = MATCH_WINDOW_OPTION + '''\n
|
|
--self
|
|
type=bool-set
|
|
Apply marker to the window this command is run in, rather than the active window.
|
|
'''
|
|
|
|
def message_to_kitty(self, global_opts: RCOptions, opts: 'CLIOptions', args: ArgsType) -> PayloadType:
|
|
return {'match': opts.match, 'self': opts.self}
|
|
|
|
def response_from_kitty(self, boss: Boss, window: Window | None, payload_get: PayloadGetType) -> ResponseType:
|
|
for window in self.windows_for_match_payload(boss, window, payload_get):
|
|
if window:
|
|
window.remove_marker()
|
|
return None
|
|
|
|
|
|
remove_marker = RemoveMarker()
|