Reputation: 625
I am having trouble executing below tmuxinator config. When I run the configuration first letter of second command in panes section is removed. This is happening when I have to execute commands over a ssh session. Same behaviour is observed in executing commands in local but without any errors(first letter of second command is seen missing but gets executed in local).
Here is my sample config file
# /Users/ash/.config/tmuxinator/bst.yml
name: bassh
root: ~/
windows:
- apps:
layout: tiled
panes:
- app1:
- ssh bst
- ssh [email protected]
Out put in tmux on running tmuxinator session for bst
~
➜ cd /Users/ash
sh bst
ssh [email protected]
~
➜ ssh bst
sh [email protected]
[ash@gzp-t2-v-server ~]$ sh [email protected]
sh: [email protected]: No such file or directory
[ash@gzp-t2-v-server ~]$
below are the versions I am using
➜ tmux -V
tmux 3.1b
➜ tmuxinator version
tmuxinator 2.0.1
➜ zsh --version
zsh 5.7.1
Upvotes: 0
Views: 346