Browse Source

[Fix #56, Fix #58] Remove the SHELL argument

This fixes the tmux launch_msg() error.
master
Sorin Ionescu 12 years ago
parent
commit
6ada262fed
  1. 2
      plugins/tmux/init.zsh

2
plugins/tmux/init.zsh

@ -27,7 +27,7 @@ if (( $SHLVL == 1 )) && zstyle -t ':omz:plugin:tmux:auto' start; then @@ -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

Loading…
Cancel
Save