DEV Community

Discussion on: Automating complex terminal flows with tmuxinator

Collapse
 
narven profile image
Pedro Luz

If not mistaken the alias is incorrect.

# .bashrc/.zshrc/.*rc
alias tmuxinator="mux"
Enter fullscreen mode Exit fullscreen mode

it should be:

# .bashrc/.zshrc/.*rc
alias mux="tmuxinator"
Enter fullscreen mode Exit fullscreen mode
Collapse
 
j_mplourde profile image
Jean-Michel Plourde • Edited

I have seen your comment a bit late. You are absolutely right, I copy-pasted around and made a mistake. I will correct it, thanks!