From ee5a2413c6632082a2845380a4ed3cb16684c826 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 12 Aug 2025 18:50:15 +0530 Subject: [PATCH] ... --- kitty/tabs.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kitty/tabs.py b/kitty/tabs.py index c2fd0a71b..cf6c8529d 100644 --- a/kitty/tabs.py +++ b/kitty/tabs.py @@ -307,8 +307,9 @@ class Tab: # {{{ return [ f'new_tab {self.name}'.rstrip(), f'layout {self._current_layout_name}', - f'enabled_layouts {",".join(self.enabled_layouts)}' - f'set_layout_state {json.dumps(self.current_layout.serialize(self.windows))}\n' + f'enabled_layouts {",".join(self.enabled_layouts)}', + f'set_layout_state {json.dumps(self.current_layout.serialize(self.windows))}', + '' ] + launch_cmds return []