Nicer formatting for exe_search_path in debug output

This commit is contained in:
Kovid Goyal
2025-12-07 13:39:38 +05:30
parent 424199bb5a
commit f38127b20a

View File

@@ -98,6 +98,9 @@ def compare_opts(opts: KittyOpts, global_shortcuts: dict[str, SingleKey] | None,
elif f == 'modify_font':
for k in sorted(val):
print(' ', val[k])
elif f == 'exe_search_path':
for k in val:
print(' ', k)
else:
print(pformat(val))
else: