带有 tmuxinator 的垂直窗格内的水平窗格
horizontal pane inside vertical pane with tmuxinator
我想用 tmuxinator 设置一个新的 window,面板如下:
#########
# 1 # #
##### 3 #
# 2 # #
#########
即,两个 main-vertical
窗格,第一个窗格内部有一个 horizontal
,类似于:
windows:
- editor:
layout: main-vertical
panes:
- gst
- layout: horizontal
- gulp
- python script.py
有没有像 this answer 那样不使用 window 维度的简单方法来实现这一点?或者 tmuxinator 的替代品?
我开始改用tmxup,解决方法如下:
session_name: statuspage
windows:
- window_name: main dev
layout: main-vertical
shell_command_before:
- workon statuspage
panes:
- shell_command:
- python statuspage.py
- gst
- pwd
您可以通过
轻松接近它
windows:
- cli:
layout: main-vertical
panes:
- one:
- gst
- two:
- gulp
- three:
- python script.py
生产
#########
# # 2 #
# 1 #####
# # 3 #
#########
我想用 tmuxinator 设置一个新的 window,面板如下:
#########
# 1 # #
##### 3 #
# 2 # #
#########
即,两个 main-vertical
窗格,第一个窗格内部有一个 horizontal
,类似于:
windows:
- editor:
layout: main-vertical
panes:
- gst
- layout: horizontal
- gulp
- python script.py
有没有像 this answer 那样不使用 window 维度的简单方法来实现这一点?或者 tmuxinator 的替代品?
我开始改用tmxup,解决方法如下:
session_name: statuspage
windows:
- window_name: main dev
layout: main-vertical
shell_command_before:
- workon statuspage
panes:
- shell_command:
- python statuspage.py
- gst
- pwd
您可以通过
轻松接近它windows:
- cli:
layout: main-vertical
panes:
- one:
- gst
- two:
- gulp
- three:
- python script.py
生产
#########
# # 2 #
# 1 #####
# # 3 #
#########