Allow reverse video for the mouse selection

Fixes #646
This commit is contained in:
Kovid Goyal
2021-10-28 15:01:48 +05:30
parent 28386cc496
commit 702bfccfa2
7 changed files with 22 additions and 17 deletions

View File

@@ -17,7 +17,10 @@ if TYPE_CHECKING:
from kitty.cli_stub import SetColorsRCOptions as CLIOptions
nullable_colors = ('cursor', 'cursor_text_color', 'tab_bar_background', 'tab_bar_margin_color', 'selection_foreground', 'active_border_color')
nullable_colors = (
'cursor', 'cursor_text_color', 'tab_bar_background', 'tab_bar_margin_color',
'selection_foreground', 'selection_background', 'active_border_color'
)
def parse_colors(args: Iterable[str]) -> Dict[str, Optional[int]]: