From 013cb23bc4d5da1fff8f919c83b73bcbc78f7b75 Mon Sep 17 00:00:00 2001 From: Colin Hebert Date: Tue, 20 Mar 2012 22:15:35 +0000 Subject: [PATCH] [Fix #56] tmux, launch_msg() tmux, launch_msg(): Socket is not connected is thrown due to an error by launch_ctl By default tmux starts the first login shell available, so no need to force it --- plugins/tmux/init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tmux/init.zsh b/plugins/tmux/init.zsh index d0c7988e..ffd57380 100644 --- a/plugins/tmux/init.zsh +++ b/plugins/tmux/init.zsh @@ -27,7 +27,7 @@ if (( $SHLVL == 1 )) && zstyle -t ':omz:plugin:tmux:auto' start; then if [[ -n "$session" ]]; then exec tmux attach-session -t "$session" else - exec tmux new-session "$SHELL -l" + exec tmux new-session fi fi