tmuxinator initialize pane with multiple commands

前端 未结 3 1404
难免孤独
难免孤独 2021-02-20 08:02

I am using Tmuxinator, and I was wondering is there anyway to initialize a Tmux pane using multiple commands?

Example

panes:
    - vim
          


        
3条回答
  •  故里飘歌
    2021-02-20 08:39

    you could put && between commands.

    panes:
        - vim
        - workon project &&           #activate virtualenv and ..
          ./manage.py runserver       #run sever
    

提交回复
热议问题