tmuxinator does not update session after editing that session's project

210 Views Asked by At

I have a tmuxinator project some-project.

After using it, I updated it with tmuxinator edit some-project. Now when I run tmuxinator start some-project, I get the same session layout as before editing some-project.

How can I make tmuxinator use the new project version?

2

There are 2 best solutions below

1
On BEST ANSWER
tmux kill-session -t some-project
tmuxinator start some-project
0
On

kill the session first using:

tmux kill-session -t some-project

then start the project again using:

tmuxinator start some-project