summaryrefslogtreecommitdiff
path: root/plugins/tmux
diff options
context:
space:
mode:
authorJosh Matthews <jmatth@nbcs.rutgers.edu>2013-02-26 17:50:15 -0500
committerJosh Matthews <jmatth@nbcs.rutgers.edu>2013-02-26 22:29:26 -0500
commit26ee66f179be08fab59d41a0522ad51610125c6c (patch)
treeeb8ff3ac7f5814eca71f8b4397c144051b60ca46 /plugins/tmux
parentb979400cff17248147d95f6271edb6f2d6e36c84 (diff)
downloadzsh-26ee66f179be08fab59d41a0522ad51610125c6c.tar.gz
zsh-26ee66f179be08fab59d41a0522ad51610125c6c.tar.bz2
zsh-26ee66f179be08fab59d41a0522ad51610125c6c.zip
Adding main function and alias to tmux plugin.
Diffstat (limited to 'plugins/tmux')
-rw-r--r--plugins/tmux/tmux.plugin.zsh37
1 files changed, 33 insertions, 4 deletions
diff --git a/plugins/tmux/tmux.plugin.zsh b/plugins/tmux/tmux.plugin.zsh
index cc676cb92..a2f36c0be 100644
--- a/plugins/tmux/tmux.plugin.zsh
+++ b/plugins/tmux/tmux.plugin.zsh
@@ -1,12 +1,41 @@
# Configuration variables
# Automatically start tmux
-[[ -n "$ZSH_TMUX_AUTOSTART" ]] || ZSH_TMUX_AUTOSTART = false
+[[ -n "$ZSH_TMUX_AUTOSTART" ]] || ZSH_TMUX_AUTOSTART=false
# Automatically connect to a previous session if it exists
-[[ -n "$ZSH_TMUX_AUTOCONNECT" ]] || ZSH_TMUX_AUTOCONNECT = true
+[[ -n "$ZSH_TMUX_AUTOCONNECT" ]] || ZSH_TMUX_AUTOCONNECT=true
# Automatically close the terminal when tmux exits
-[[ -n "$ZSH_TMUX_AUTOQUIT" ]] || ZSH_TMUX_AUTOQUIT = true
+[[ -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_AUTOCONNECT = true
+[[ -n "$ZSH_TMUX_FIXTERM" ]] || ZSH_TMUX_AUTOCONNECT=true
# Get the absolute path to the current directory
local zsh_tmux_plugin_path="$(cd "$(dirname "$0")" && pwd)"
+
+# Local variable to store the local config file to use, if any.
+local fixed_config=""
+
+# Set the correct local config file to use
+if [[ "$ZSH_TMUX_FIXTERM" == "true" ]]
+then
+ if [[ -f $HOME/.tmux.conf || -h $HOME/.tmux.conf ]]
+ then
+ fixed_config=$zsh_tmux_plugin_path/tmux.extra.conf
+ else
+ fixed_config=$zsh_tmux_plugin_path/tmux.only.conf
+ fi
+fi
+
+# Override tmux with our function
+function zsh_tmux_plugin_start()
+{
+ if [[ "$ZSH_TMUX_AUTOCONNECT" == "true" ]]
+ then
+ \tmux attach || tmux -f $fixed_config new-session
+ [[ "$ZSH_TMUX_AUTOQUIT" == "true" ]] && exit
+ else
+ \tmux -f $fixed_config
+ [[ "$ZSH_TMUX_AUTOQUIT" == "true" ]] && exit
+ fi
+}
+
+alias tmux=zsh_tmux_plugin_start