Files
kitty-mirror/kitty/rc/remove_marker.py
2025-02-03 10:56:50 +05:30

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()