是否可以在`tmuxinator`"`pre_window`中指定多个命令?

时间:2014-12-18 21:30:25

标签: tmux tmuxinator

tmuxinator配置文件中,您可以指定应在单个shell中运行多个命令,例如:

windows:
  - logs:
    - cd ~/project/log
    - tail -f db.log

你可以对pre_window做同样的事吗?以下事情没有奏效:

1

pre_window:
  - cmd1
  - cmd2

2

pre_window: [ cmd1,
  cmd ]

3

pre_window:
  - a: cmd1
  - b: cmd2

我可能会遗漏一些相当简单的东西;我不太了解YAML或了解tmuxinator的实施情况。

我已经知道(现在正在使用)

pre_window: cmd1 && cmd2

我希望tmuxinator分别发送每一行。

1 个答案:

答案 0 :(得分:1)

目前tmuxinator存储库中有这些功能的pull request 您可以在本地(可能使用git-extras)和build the gem获取拉取请求,而不是合并它。

他们合并了PR和此功能is in the new release