From 6ada262fed853c41f1e731c51974713731d967b4 Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Tue, 20 Mar 2012 18:27:53 -0400 Subject: [PATCH] [Fix #56, Fix #58] Remove the SHELL argument This fixes the tmux launch_msg() error. --- 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 d0c7988..ffd5738 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