Make the colons colored like the others

This commit is contained in:
pagedown 2022-01-30 17:37:17 +08:00
parent 539ec69d3f
commit 14ae2d0862
No known key found for this signature in database
GPG key ID: E921CF18AC8FF6EB

View file

@ -91,7 +91,7 @@ def compare_opts(opts: KittyOpts, print: Print) -> None:
for f in changed_opts:
val = getattr(opts, f)
if isinstance(val, dict):
print(f'{title(f)}:')
print(title(f'{f}:'))
if f == 'symbol_map':
for k in sorted(val):
print(f'\tU+{k[0]:04x} - U+{k[1]:04x}{val[k]}')