This commit is contained in:
Kovid Goyal 2025-08-12 18:50:15 +05:30
parent 214dc73c52
commit ee5a2413c6
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -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 []