-
Notifications
You must be signed in to change notification settings - Fork 4.5k
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
tmux, launch_msg(): Socket is not connected #56
Comments
It's telling tmux to launch a login shell. I remember that error. It believe it's a tmux bug. You'll have to google. By the way, tmux is pretty buggy. I had the thing crash OS X multiple times with kernel panics. I had to power cycle the machine. |
Yes, I've already done my research. It doesn't seem to be due to tmux (well, not entirely), but to launch_ctl . The documentation states that by default,
And by default,
So that's basically what tmux is already doing. |
Ok. Then I suppose it's safe to remove. The screen plugin was written first and the tmux plugin is based on it. |
Just, more information on the issue: https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard If you don't use this
in my .tmux.conf and it works fine. |
Right, I use that to make |
This fixes the tmux launch_msg() error.
This fixes the tmux launch_msg() error.
This fixes the tmux launch_msg() error.
When I start automatically tmux I get this message.
After a small hunt, it seems that it comes from
tmux new-session -d -s "$tmux_session" "$SHELL -l"
in the tmux plugin, in particular the"$SHELL -l"
part (it's not just the-l
option, it's the entire argument).I'm not sure that's important to force the shell like this, I removed it and it still works.
The text was updated successfully, but these errors were encountered: