2013-02-26 19:05:22 +00:00
|
|
|
# Configuration variables
|
2013-02-27 03:18:36 +00:00
|
|
|
#
|
2013-02-26 19:05:22 +00:00
|
|
|
# Automatically start tmux
|
2013-02-26 22:50:15 +00:00
|
|
|
[[ -n "$ZSH_TMUX_AUTOSTART" ]] || ZSH_TMUX_AUTOSTART=false
|
2013-02-27 03:18:36 +00:00
|
|
|
# Only autostart once. If set to false, tmux will attempt to
|
|
|
|
# autostart every time your zsh configs are reloaded.
|
|
|
|
[[ -n "$ZSH_TMUX_AUTOSTART_ONCE" ]] || ZSH_TMUX_AUTOSTART_ONCE=true
|
2013-02-26 19:05:22 +00:00
|
|
|
# Automatically connect to a previous session if it exists
|
2013-02-26 22:50:15 +00:00
|
|
|
[[ -n "$ZSH_TMUX_AUTOCONNECT" ]] || ZSH_TMUX_AUTOCONNECT=true
|
2013-02-26 19:05:22 +00:00
|
|
|
# Automatically close the terminal when tmux exits
|
2013-02-26 22:50:15 +00:00
|
|
|
[[ -n "$ZSH_TMUX_AUTOQUIT" ]] || ZSH_TMUX_AUTOQUIT=$ZSH_TMUX_AUTOSTART
|
2013-02-26 19:05:22 +00:00
|
|
|
# Set term to screen or screen-256color based on current terminal support
|
2013-02-27 02:47:11 +00:00
|
|
|
[[ -n "$ZSH_TMUX_FIXTERM" ]] || ZSH_TMUX_FIXTERM=true
|
2013-02-26 19:05:22 +00:00
|
|
|
|
2013-02-27 03:18:36 +00:00
|
|
|
|
2013-02-26 19:05:22 +00:00
|
|
|
# Get the absolute path to the current directory
|
|
|
|
local zsh_tmux_plugin_path="$(cd "$(dirname "$0")" && pwd)"
|
2013-02-26 22:50:15 +00:00
|
|
|
|
2013-02-26 23:05:58 +00:00
|
|
|
# Determine if the terminal supports 256 colors
|
|
|
|
if [[ `tput colors` == "256" ]]
|
|
|
|
then
|
2013-02-27 02:47:11 +00:00
|
|
|
export ZSH_TMUX_TERM="screen-256color"
|
2013-02-26 23:05:58 +00:00
|
|
|
else
|
2013-02-27 02:47:11 +00:00
|
|
|
export ZSH_TMUX_TERM="screen"
|
2013-02-26 23:05:58 +00:00
|
|
|
fi
|
|
|
|
|
2013-02-26 22:50:15 +00:00
|
|
|
# Local variable to store the local config file to use, if any.
|
|
|
|
local fixed_config=""
|
|
|
|
|
2013-02-27 02:47:11 +00:00
|
|
|
# Set the correct local config file to use.
|
2013-02-27 02:52:26 +00:00
|
|
|
if [[ -f $HOME/.tmux.conf || -h $HOME/.tmux.conf ]]
|
2013-02-26 22:50:15 +00:00
|
|
|
then
|
2013-02-27 02:52:26 +00:00
|
|
|
#use this when they have a ~/.tmux.conf
|
|
|
|
fixed_config="$zsh_tmux_plugin_path/tmux.extra.conf"
|
|
|
|
else
|
|
|
|
#use this when they don't have a ~/.tmux.conf
|
|
|
|
fixed_config="$zsh_tmux_plugin_path/tmux.only.conf"
|
2013-02-26 22:50:15 +00:00
|
|
|
fi
|
|
|
|
|
2013-02-27 02:47:11 +00:00
|
|
|
# Wrapper function for tmux.
|
|
|
|
function zsh_tmux_plugin_run()
|
2013-02-26 22:50:15 +00:00
|
|
|
{
|
2013-02-26 23:07:25 +00:00
|
|
|
# We have other arguments, just run them
|
2013-02-27 02:47:11 +00:00
|
|
|
if [[ -n "$@" ]]
|
2013-02-26 23:07:25 +00:00
|
|
|
then
|
|
|
|
\tmux $@
|
|
|
|
# Try to connect to an existing session.
|
|
|
|
elif [[ "$ZSH_TMUX_AUTOCONNECT" == "true" ]]
|
2013-02-26 22:50:15 +00:00
|
|
|
then
|
2013-02-27 02:52:26 +00:00
|
|
|
\tmux attach || \tmux `[[ "$ZSH_TMUX_FIXTERM" == "true" ]] && echo '-f '$fixed_config` new-session
|
2013-02-26 22:50:15 +00:00
|
|
|
[[ "$ZSH_TMUX_AUTOQUIT" == "true" ]] && exit
|
2013-02-27 02:47:11 +00:00
|
|
|
# Just run tmux, fixing the TERM variable if requested.
|
2013-02-26 22:50:15 +00:00
|
|
|
else
|
2013-02-27 02:52:26 +00:00
|
|
|
\tmux `[[ "$ZSH_TMUX_FIXTERM" == "true" ]] && echo '-f '$fixed_config`
|
2013-02-26 22:50:15 +00:00
|
|
|
[[ "$ZSH_TMUX_AUTOQUIT" == "true" ]] && exit
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-02-27 02:47:11 +00:00
|
|
|
# Alias tmux to our wrapper function.
|
2013-02-27 03:55:18 +00:00
|
|
|
alias tmux=zsh_tmux_plugin_run
|
2013-02-26 23:09:01 +00:00
|
|
|
|
2013-02-27 03:18:36 +00:00
|
|
|
# Autostart if not already in tmux and enabled.
|
2013-02-27 03:03:22 +00:00
|
|
|
if [[ ! -n "$TMUX" && "$ZSH_TMUX_AUTOSTART" == "true" ]]
|
2013-02-26 23:09:01 +00:00
|
|
|
then
|
2013-02-27 03:18:36 +00:00
|
|
|
# Actually don't autostart if we already did and multiple autostarts are disabled.
|
|
|
|
if [[ "$ZSH_TMUX_AUTOSTART_ONCE" == "false" || "$ZSH_TMUX_AUTOSTARTED" != "true" ]]
|
|
|
|
then
|
|
|
|
export ZSH_TMUX_AUTOSTARTED=true
|
|
|
|
zsh_tmux_plugin_run
|
|
|
|
fi
|
2013-02-26 23:09:01 +00:00
|
|
|
fi
|