From bb596216ecab096ce36fb7893a93039b5f913e29 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 11 Aug 2025 21:24:09 +0530 Subject: [PATCH] Forgot to serialize watchers --- kitty/window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kitty/window.py b/kitty/window.py index c41b539df..e8d4a441d 100644 --- a/kitty/window.py +++ b/kitty/window.py @@ -1964,6 +1964,8 @@ def as_launch_command(self) -> list[str]: ans.append(f'--env={k}={v}') for cs in self.creation_spec.colors: ans.append(f'--color={cs}') + for wr in self.creation_spec.watchers: + ans.append(f'--watcher={wr}') for k, v in self.user_vars.items(): ans.append(f'--var={k}={v}') ans.extend(self.padding.as_launch_args())