-
Notifications
You must be signed in to change notification settings - Fork 628
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tmuxinator won't run untill another tmux session exists #536
Comments
Same here, something changed recently. Thanks @Kayne for a workaround so I can at least launch it. |
This must be the change in the tmux 2.5. Reverting back to tmux 2.4 works fine ( |
Just had the same problem on my mac, workaround is working |
This has been tracked down to a change in behavior with respect to |
👍 I should have checked here sooner. 😄 |
pretty easy question how would I install tmuxi2.4 on a mac? |
Install formula from specific revision (I belive it's how it's called in git):
|
Yay!!
…On Thu, Jun 15, 2017 at 12:36 PM, Marcin Bratek ***@***.***> wrote:
Install formula from specific revision (I belive it's how it's called in
git):
brew install https://raw.githubusercontent.com/Homebrew/brew/
2d2034afc6e4dfab0a1c48f5edd2c5478576293b/Formula/tmux.rb
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#536 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AB3L0mJByuUYlwr_n9Mu1B_fdTj1MnGrks5sEWu2gaJpZM4NxFeH>
.
|
UPDATE: the bug in |
Thank ye sir!
…On Thu, Jun 15, 2017 at 6:15 PM, Adam Strickland ***@***.***> wrote:
UPDATE: the bug in tmux that was causing this issue has been fixed in
master and will become part of that tool's 2.6 release. Unfortunately, the
fix won't be back-ported to 2.5. If you really must have tmux 2.5 and use
it with tmuxinator, you can pull the 2.5 branch from Github, apply the
patch in the linked issue (also here) and be in your merry way. However,
I would recommend simply sticking with 2.4 and jumping to 2.6 when it is
released.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#536 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AB3L0gabg39YZlcAgxgOSjg5GA6G4Q00ks5sEbsMgaJpZM4NxFeH>
.
|
Upgraded to sierra last night and started getting this error. But, just tried compiling 2.6-rc on tmux and checked the contents of cmd-find.c to be sure the patch was included, and it is. Linked my compiled version to the /usr/local/bin dir and re-ran tmuxinator without a previously running tmux and I still get the error.... bummer. I must be doing something wrong. rc3 For now I'll just start dummy tmux session to use tmuxinator so it has something to start with. Anyone else try tmux 2.6? (tried with tmuxinator 0.9.0) |
@danshumaker I was having the same issue. Take a look at your tmux config. I am using the same config as my co-worker who is a bit more savvy than I with tmux and 2.4 broke a number of things in his config. Once I updated my config the problem went away. I don't know which specific issues were causing the problem; my co-worker had made numerous changes since I first copied it over. |
For me the line |
It seems that tmux changed some of its behavior that has to do with the
that caused the trouble. It always worked until I upgraded to the latest version of tmux. After removing this line from my |
@henvo can you double-check your syntax? pretty sure the bind-key e copy-mode \; send-keys "?Error" C-m Also, what versions of tmux and tmuxinator are being run? |
@danshumaker were you able to get things working? I'm a bit surprised by tmux 2.6 having issues... I personally have noticed that if I have multiple versions of tmux on my system I have to be careful about my |
`~ » tmux -V
|
@wanyaoqi I'm not sure this is the same problem... The line of code that introduce the problem this issue refers to was introduced after tmux 2.4 was released. As others have noted in the comments above, there are some That said, if you think this is still |
I still run into this issue in 2.6 . Adding the following to my ~/.zshrc did the trick. Of course, this could be bundled up in a script or alias, but I wanted it to be run any time my shell starts and no tmux sessions are found.
|
@adamstrickland Sorry for the late response, I do not have this issue anymore. Woot woot! |
@dkrieger Interesting... Thanks for the snippet; I'd be interested to know if others use something similar (if you do, maybe just +1 the comment?) over time. If so, maybe we incorporate the same into tmuxinator in a future release. |
I have tmux 2.7 and tmuxinator 0.11.1 installed and this problem affected me. The problem disappeared when I removed all of my tmux config files, which enabled me to identify the cause: the option
Removing this line, as described in this comment above, fixed the problem. For more info, see tmux/tmux#230. |
Set UTF-8 in status bar is no longer necessary. More info: tmux/tmux#230 tmuxinator/tmuxinator#536
I'm running into trouble here with tmux/tmux#182 - running |
I didn't use to have this problem, but I get it now that I switched to fish as my shell. In zsh it works fine, but in fish it does not. In both cases I have the same tmux configuration. This is the output that I get when I run
Again, the above only happens under the fish shell, not under zsh. tmuxinator debug my-projectIn case it is helpful to figure out the problem, this is the output of
fish shell version 2.7.1 |
Same happens to me on Mac,
Replication:
Result:
|
@gnapse if you are still having a problem do you mind starting a new issue for it? If it turns out to be related we’ll link the two so people can find them |
@episage I’m not seeing where |
I had the same problem with |
It seems there are some wrong configs in my |
FWIW, I landed on this issue after running into the same, initially described issue. Turned out my # I used to have this
set -g status-fg white
set -g status-bg black
# But I changed to this
set -g status-style fg=white,bg=black You can see more about what I ran into over here: tmux/tmux#1689 |
My issue was that I updated tmux to version 3.0a and that broke on the backslashes in my conf file. I needed to change
to
|
Tmuxinator can't connect to tmux server (create new sessions) unless at least one session exists already.
When I have no sessions live and try to run tmuxinator project:
(the /private/tmp/tmux-501/default exists and is empty)
But when I create new tmux sessions (and at least one still exists):
all works fine, tmuxinator run tmux session and all commands are executed correctly.
I'm using tmux 2.5 (OS X 10.12) installed via homebrew.
The text was updated successfully, but these errors were encountered: