You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'd find it really helpful if we could not only create multiple tabs, put also multiple panes inside those tabs, and then run different commands inside each one of them.
The configuration could look like this:
# Single pane (just like now, for backwards compatibility)
- title: ...profile: ...color: ...commands:
- cd ...
- ls ...# Multiple panes
- title: ...profile: ...color: ...panes:
- id: 1type: horizontalsize: 0.5panes:
- id: 2type: verticalsize: 0.2commands:
- cd ...
- ls ...
- id: 3type: verticalsize: 0.8commands:
- cd ...
- ls ...
- id: 4type: horizontalsize: 0.5commands:
- cd ...
- ls ...
this is just a quick idea, for example the type property could be improved, maybe moved to the parents. I was thinking some kind of recursive setup would be fitting, and maybe we could also move the commands out of the panes property, and adress them through the IDs 🤔 a thing to keep in mind is that only leaf panes, so only the innermost panes can receive commands (the other ones are only containers)
and I also don't know how to implement this, but maybe I'll learn this and try this out on my own :)
The text was updated successfully, but these errors were encountered:
Hi! I'd find it really helpful if we could not only create multiple tabs, put also multiple panes inside those tabs, and then run different commands inside each one of them.
The configuration could look like this:
this is just a quick idea, for example the
type
property could be improved, maybe moved to the parents. I was thinking some kind of recursive setup would be fitting, and maybe we could also move the commands out of the panes property, and adress them through the IDs 🤔 a thing to keep in mind is that onlyleaf panes
, so only the innermost panes can receive commands (the other ones are only containers)and I also don't know how to implement this, but maybe I'll learn this and try this out on my own :)
The text was updated successfully, but these errors were encountered: