Don't run the commands appropriately

Author: devrriorCreated Mar 25, 2022Updated Dec 12, 2024

Describe the bug When I start one of my projects, the commands which I set to run in the panes don't run correctly.

To Reproduce Just run tmuxinator start project

Expected behavior I expected my windows to execute the commands correctly.

Environment

  • tmuxinator Version: 3.0.2
  • tmux Version: 3.2a
  • Ruby Version: 3.1.1p18
  • OS: macOS Monterrey version 12.3

Additional information image image image image

My config

yaml
name: chat-message
root: ~/repos/chat-messages
on_project_start: docker-compose up -d
# on_project_exit: docker-compose down

windows:
  - frontend:
      root: ~/repos/chat-messages/frontend
      panes:
        - editor:
            - vim +'Telescope find_files'

  - backend:
      root: ~/repos/chat-messages/backend
      panes:
        - editor:
            - vim +'Telescope find_files'

  - server:
      layout: main-vertical
      panes:
        - react-server:
            - cd frontend/
            - clear
            - docker-compose logs --follow frontend

        - backend-server:
            - cd backend/
            - clear
            - docker-compose logs --follow backend