2013-10-24 06:17:43 +00:00
|
|
|
#
|
|
|
|
# Aliases
|
|
|
|
#
|
|
|
|
|
|
|
|
alias ta='tmux attach -t'
|
2016-08-13 03:50:09 +00:00
|
|
|
alias tad='tmux attach -d -t'
|
2013-10-24 06:17:43 +00:00
|
|
|
alias ts='tmux new-session -s'
|
|
|
|
alias tl='tmux list-sessions'
|
2014-09-16 08:35:43 +00:00
|
|
|
alias tksv='tmux kill-server'
|
|
|
|
alias tkss='tmux kill-session -t'
|
2013-10-24 06:17:43 +00:00
|
|
|
|
2013-02-27 15:21:19 +00:00
|
|
|
# Only run if tmux is actually installed
|
|
|
|
if which tmux &> /dev/null
|
|
|
|
then
|
|
|
|
# Configuration variables
|
|
|
|
#
|
|
|
|
# Automatically start tmux
|
|
|
|
[[ -n "$ZSH_TMUX_AUTOSTART" ]] || ZSH_TMUX_AUTOSTART=false
|
|
|
|
# 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
|
|
|
|
# Automatically connect to a previous session if it exists
|
|
|
|
[[ -n "$ZSH_TMUX_AUTOCONNECT" ]] || ZSH_TMUX_AUTOCONNECT=true
|
|
|
|
# Automatically close the terminal when tmux exits
|
|
|
|
[[ -n "$ZSH_TMUX_AUTOQUIT" ]] || ZSH_TMUX_AUTOQUIT=$ZSH_TMUX_AUTOSTART
|
|
|
|
# Set term to screen or screen-256color based on current terminal support
|
|
|
|
[[ -n "$ZSH_TMUX_FIXTERM" ]] || ZSH_TMUX_FIXTERM=true
|
2013-06-22 22:58:45 +00:00
|
|
|
# Set '-CC' option for iTerm2 tmux integration
|
2013-07-02 08:29:25 +00:00
|
|
|
[[ -n "$ZSH_TMUX_ITERM2" ]] || ZSH_TMUX_ITERM2=false
|
2013-02-27 15:21:19 +00:00
|
|
|
# The TERM to use for non-256 color terminals.
|
|
|
|
# Tmux states this should be screen, but you may need to change it on
|
|
|
|
# systems without the proper terminfo
|
|
|
|
[[ -n "$ZSH_TMUX_FIXTERM_WITHOUT_256COLOR" ]] || ZSH_TMUX_FIXTERM_WITHOUT_256COLOR="screen"
|
|
|
|
# The TERM to use for 256 color terminals.
|
|
|
|
# Tmux states this should be screen-256color, but you may need to change it on
|
|
|
|
# systems without the proper terminfo
|
|
|
|
[[ -n "$ZSH_TMUX_FIXTERM_WITH_256COLOR" ]] || ZSH_TMUX_FIXTERM_WITH_256COLOR="screen-256color"
|
2013-02-27 03:18:36 +00:00
|
|
|
|
2013-02-26 22:50:15 +00:00
|
|
|
|
2013-02-27 15:21:19 +00:00
|
|
|
# Get the absolute path to the current directory
|
|
|
|
local zsh_tmux_plugin_path="$(cd "$(dirname "$0")" && pwd)"
|
2013-02-26 23:05:58 +00:00
|
|
|
|
2013-02-27 15:21:19 +00:00
|
|
|
# Determine if the terminal supports 256 colors
|
|
|
|
if [[ `tput colors` == "256" ]]
|
|
|
|
then
|
|
|
|
export ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITH_256COLOR
|
|
|
|
else
|
|
|
|
export ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITHOUT_256COLOR
|
|
|
|
fi
|
2013-02-26 22:50:15 +00:00
|
|
|
|
2013-02-27 15:21:19 +00:00
|
|
|
# Set the correct local config file to use.
|
2013-07-15 01:25:18 +00:00
|
|
|
if [[ "$ZSH_TMUX_ITERM2" == "false" ]] && [[ -f $HOME/.tmux.conf || -h $HOME/.tmux.conf ]]
|
2013-02-26 23:07:25 +00:00
|
|
|
then
|
2013-02-27 15:21:19 +00:00
|
|
|
#use this when they have a ~/.tmux.conf
|
2013-03-26 19:42:05 +00:00
|
|
|
export _ZSH_TMUX_FIXED_CONFIG="$zsh_tmux_plugin_path/tmux.extra.conf"
|
2013-02-26 22:50:15 +00:00
|
|
|
else
|
2013-02-27 15:21:19 +00:00
|
|
|
#use this when they don't have a ~/.tmux.conf
|
2013-03-26 19:42:05 +00:00
|
|
|
export _ZSH_TMUX_FIXED_CONFIG="$zsh_tmux_plugin_path/tmux.only.conf"
|
2013-02-26 22:50:15 +00:00
|
|
|
fi
|
|
|
|
|
2013-02-27 15:21:19 +00:00
|
|
|
# Wrapper function for tmux.
|
2013-03-26 19:41:34 +00:00
|
|
|
function _zsh_tmux_plugin_run()
|
2013-02-27 15:21:19 +00:00
|
|
|
{
|
|
|
|
# We have other arguments, just run them
|
|
|
|
if [[ -n "$@" ]]
|
|
|
|
then
|
|
|
|
\tmux $@
|
|
|
|
# Try to connect to an existing session.
|
|
|
|
elif [[ "$ZSH_TMUX_AUTOCONNECT" == "true" ]]
|
|
|
|
then
|
2013-06-22 22:58:45 +00:00
|
|
|
\tmux `[[ "$ZSH_TMUX_ITERM2" == "true" ]] && echo '-CC '` attach || \tmux `[[ "$ZSH_TMUX_ITERM2" == "true" ]] && echo '-CC '` `[[ "$ZSH_TMUX_FIXTERM" == "true" ]] && echo '-f '$_ZSH_TMUX_FIXED_CONFIG` new-session
|
2013-02-27 15:21:19 +00:00
|
|
|
[[ "$ZSH_TMUX_AUTOQUIT" == "true" ]] && exit
|
|
|
|
# Just run tmux, fixing the TERM variable if requested.
|
|
|
|
else
|
2013-06-22 22:58:45 +00:00
|
|
|
\tmux `[[ "$ZSH_TMUX_ITERM2" == "true" ]] && echo '-CC '` `[[ "$ZSH_TMUX_FIXTERM" == "true" ]] && echo '-f '$_ZSH_TMUX_FIXED_CONFIG`
|
2013-02-27 15:21:19 +00:00
|
|
|
[[ "$ZSH_TMUX_AUTOQUIT" == "true" ]] && exit
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Use the completions for tmux for our function
|
2013-03-26 19:41:34 +00:00
|
|
|
compdef _tmux _zsh_tmux_plugin_run
|
2013-02-27 03:57:37 +00:00
|
|
|
|
2013-02-27 15:21:19 +00:00
|
|
|
# Alias tmux to our wrapper function.
|
2013-03-26 19:41:34 +00:00
|
|
|
alias tmux=_zsh_tmux_plugin_run
|
2013-02-26 23:09:01 +00:00
|
|
|
|
2013-02-27 15:21:19 +00:00
|
|
|
# Autostart if not already in tmux and enabled.
|
|
|
|
if [[ ! -n "$TMUX" && "$ZSH_TMUX_AUTOSTART" == "true" ]]
|
2013-02-27 03:18:36 +00:00
|
|
|
then
|
2013-02-27 15:21:19 +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
|
2013-03-26 19:41:34 +00:00
|
|
|
_zsh_tmux_plugin_run
|
2013-02-27 15:21:19 +00:00
|
|
|
fi
|
2013-02-27 03:18:36 +00:00
|
|
|
fi
|
2013-02-27 15:21:19 +00:00
|
|
|
else
|
|
|
|
print "zsh tmux plugin: tmux not found. Please install tmux before using this plugin."
|
2013-02-26 23:09:01 +00:00
|
|
|
fi
|