Hello I want open a 2 terminus panel in distinct groups I have this code:
def run(self):
self.window.run_command('set_layout', {
"cols": [0.0, 0.5, 1.0 ],
"rows": [0.0, 0.5, 1.0 ],
"cells": [
[0, 0, 1, 1 ],
[1, 0, 2, 1 ],
[0, 1, 1, 2 ],
[1, 1, 2, 2 ]
]
})
self.window.focus_group(1)
self.window.run_command('terminus_open', {"cmd": "python3","cwd": "${file_path:${folder}}"})
self.window.focus_group(2)
self.window.run_command('terminus_open')
but no works, both terminus panels opens on Group 2
Any ideas?