From f38127b20ae61eb1c3d2d6cc2169df186a24c8ee Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 7 Dec 2025 13:39:38 +0530 Subject: [PATCH] Nicer formatting for exe_search_path in debug output --- kitty/debug_config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kitty/debug_config.py b/kitty/debug_config.py index 75921b685..9f2c5d378 100644 --- a/kitty/debug_config.py +++ b/kitty/debug_config.py @@ -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: