This commit is contained in:
Ben Withem 2018-04-17 20:56:53 +00:00 committed by GitHub
commit 2e49e3344b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,16 @@ if which tmux &> /dev/null
then
# Configuration variables
#
# Check if OSX
if [[ "$(uname)" == "Darwin" ]]
then
# Check if terminal app is iTerm2
if [[ "$TERM_PROGRAM" == "iTerm.app" ]]
then
# Set '-CC' option for iTerm2 tmux integration
[[ -n "$ZSH_TMUX_ITERM2" ]] || ZSH_TMUX_ITERM2=true
fi
fi
# Automatically start tmux
[[ -n "$ZSH_TMUX_AUTOSTART" ]] || ZSH_TMUX_AUTOSTART=false
# Only autostart once. If set to false, tmux will attempt to
@ -64,7 +74,7 @@ if which tmux &> /dev/null
# We have other arguments, just run them
if [[ -n "$@" ]]
then
\tmux $@
\tmux `[[ "$ZSH_TMUX_ITERM2" == "true" ]] && echo '-CC '` $@ || $@
# Try to connect to an existing session.
elif [[ "$ZSH_TMUX_AUTOCONNECT" == "true" ]]
then