#!/usr/bin/env python # vim:fileencoding=utf-8 # License: GPLv3 Copyright: 2020, Kovid Goyal from typing import TYPE_CHECKING from .base import ( MATCH_TAB_OPTION, MATCH_WINDOW_OPTION, ArgsType, Boss, PayloadGetType, PayloadType, RCOptions, RemoteCommand, ResponseType, Window, windows_for_payload ) if TYPE_CHECKING: from kitty.cli_stub import DisableLigaturesRCOptions as CLIOptions class DisableLigatures(RemoteCommand): ''' strategy+: One of :code:`never`, :code:`always` or :code:`cursor` match_window: Window to change opacity in match_tab: Tab to change opacity in all: Boolean indicating operate on all windows ''' short_desc = 'Control ligature rendering' desc = ( 'Control ligature rendering for the specified windows/tabs (defaults to active window). The STRATEGY' ' can be one of: never, always, cursor' ) options_spec = '''\ --all -a type=bool-set By default, ligatures are only affected in the active window. This option will cause ligatures to be changed in all windows. ''' + '\n\n' + MATCH_WINDOW_OPTION + '\n\n' + MATCH_TAB_OPTION.replace('--match -m', '--match-tab -t') argspec = 'STRATEGY' def message_to_kitty(self, global_opts: RCOptions, opts: 'CLIOptions', args: ArgsType) -> PayloadType: if not args: self.fatal( 'You must specify the STRATEGY for disabling ligatures, must be one of' ' never, always or cursor') strategy = args[0] if strategy not in ('never', 'always', 'cursor'): self.fatal('{} is not a valid disable_ligatures strategy'.format('strategy')) return { 'strategy': strategy, 'match_window': opts.match, 'match_tab': opts.match_tab, 'all': opts.all, } def response_from_kitty(self, boss: 'Boss', window: 'Window', payload_get: PayloadGetType) -> ResponseType: windows = windows_for_payload(boss, window, payload_get) boss.disable_ligatures_in(windows, payload_get('strategy')) # }}} disable_ligatures = DisableLigatures()