我可以在命令行上将配置文件直接传递给 tmuxinator 吗?
Can I pass a config file directly to tmuxinator on the command-line?
我是 tmuxinator 的新手,如果这是一个幼稚的问题,请原谅我。
我有一个 tmuxinator 配置文件(比如 my_config.yaml
)存储在共享项目的源代码树中。
为了让其他人使用它,AFAICT 他们首先必须从配置文件到他们的主目录中制作一个软link,然后单独启动 tmuxinator:
$ ln -rs my_config.yaml ~/.tmuxinator/
$ tmuxinator my_config
这很不方便,并且还要求您的所有配置文件都具有唯一的文件名,以免它们在 ~/.tmuxinator/
.
中发生冲突
我更希望能够做类似的事情:
$ tmuxinator my_config.yaml
有没有办法在命令行上将配置文件传递给 tmuxinator?
Is there a way to pass the config file to tmuxinator on the command line?
目前没有。欢迎在 GitHub.
上打开功能 request/issue
Tmuxinator 确实,但是,支持项目级配置文件。如果将 my_config.yml 移动到 /project/root/.tmuxinator,则可以通过 tmuxinator start .
或 tmuxinator local
.
启动它(从项目根目录)
更新:
正如我在下面的评论中添加的那样,现在可以使用 -p
标志:
tmuxinator start -p /path/to/my_config.yml
我是 tmuxinator 的新手,如果这是一个幼稚的问题,请原谅我。
我有一个 tmuxinator 配置文件(比如 my_config.yaml
)存储在共享项目的源代码树中。
为了让其他人使用它,AFAICT 他们首先必须从配置文件到他们的主目录中制作一个软link,然后单独启动 tmuxinator:
$ ln -rs my_config.yaml ~/.tmuxinator/
$ tmuxinator my_config
这很不方便,并且还要求您的所有配置文件都具有唯一的文件名,以免它们在 ~/.tmuxinator/
.
我更希望能够做类似的事情:
$ tmuxinator my_config.yaml
有没有办法在命令行上将配置文件传递给 tmuxinator?
Is there a way to pass the config file to tmuxinator on the command line?
目前没有。欢迎在 GitHub.
上打开功能 request/issueTmuxinator 确实,但是,支持项目级配置文件。如果将 my_config.yml 移动到 /project/root/.tmuxinator,则可以通过 tmuxinator start .
或 tmuxinator local
.
更新:
正如我在下面的评论中添加的那样,现在可以使用 -p
标志:
tmuxinator start -p /path/to/my_config.yml