mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-22 00:08:04 +02:00
Add new dotted and dashed underline enum
Also use "straight" for single underline, consistent with the protocol extension document.
This commit is contained in:
@@ -170,7 +170,7 @@ STANDARD_COLORS = {name: i for i, name in enumerate(
|
||||
'black red green yellow blue magenta cyan gray'.split())}
|
||||
STANDARD_COLORS['white'] = STANDARD_COLORS['gray']
|
||||
UNDERLINE_STYLES = {name: i + 1 for i, name in enumerate(
|
||||
'straight double curly'.split())}
|
||||
'straight double curly dotted dashed'.split())}
|
||||
|
||||
|
||||
ColorSpec = Union[int, str, Color]
|
||||
|
||||
Reference in New Issue
Block a user