Using append_layout to add to existing tabbed container
Here's what I might have in a workspace:
tabbed container splitv window1 window2 splitv window3 window4
And I'd like to run append_layout which will add window5 and window6 into the layout, ending up with this:
tabbed container splitv window1 window2 splitv window3 window4 splitv window5 window6
Is this possible? In all my attempts to achieve it, it seems that append_layout creates a new splith on top of the tabbed container, and I end up with this:
splith tabbed container splitv window1 window2 splitv window3 window4 splitv window5 window6
Using a single initial json file to build the entire workspace layout from the start is not an option in my use case.. Thanks!