tmux.plugin.zsh 3.34 KB
Newer Older
Kevin Traver's avatar
Kevin Traver committed
1
2
3
4
5
#
# Aliases
#

alias ta='tmux attach -t'
6
alias tad='tmux attach -d -t'
Kevin Traver's avatar
Kevin Traver committed
7
8
alias ts='tmux new-session -s'
alias tl='tmux list-sessions'
Peter Butkovic's avatar
Peter Butkovic committed
9
10
alias tksv='tmux kill-server'
alias tkss='tmux kill-session -t'
Kevin Traver's avatar
Kevin Traver committed
11

12
# Only run if tmux is actually installed
Andrew Janke's avatar
Andrew Janke committed
13
if ! which tmux &> /dev/null; then
Andrew Janke's avatar
Andrew Janke committed
14
  print "zsh tmux plugin: tmux not found. Please install tmux before using this plugin." >&2
Andrew Janke's avatar
Andrew Janke committed
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  return 1
fi

# 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
# Set '-CC' option for iTerm2 tmux integration
[[ -n "$ZSH_TMUX_ITERM2" ]] || ZSH_TMUX_ITERM2=false
# 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"
41

42

Andrew Janke's avatar
Andrew Janke committed
43
44
45
46
47
48
# 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
49

Andrew Janke's avatar
Andrew Janke committed
50
51
52
# Set the correct local config file to use.
if [[ "$ZSH_TMUX_ITERM2" == "false" ]] && [[ -f $HOME/.tmux.conf || -h $HOME/.tmux.conf ]]; then
  #use this when they have a ~/.tmux.conf
Andrew Janke's avatar
Andrew Janke committed
53
  export _ZSH_TMUX_FIXED_CONFIG="${0:h:a}/tmux.extra.conf"
Andrew Janke's avatar
Andrew Janke committed
54
55
else
  #use this when they don't have a ~/.tmux.conf
Andrew Janke's avatar
Andrew Janke committed
56
  export _ZSH_TMUX_FIXED_CONFIG="${0:h:a}/tmux.only.conf"
Andrew Janke's avatar
Andrew Janke committed
57
fi
58

Andrew Janke's avatar
Andrew Janke committed
59
60
# Wrapper function for tmux.
function _zsh_tmux_plugin_run() {
Andrew Janke's avatar
Andrew Janke committed
61
62
63
64
  local tmux_cmd
  tmux_cmd=(command tmux)
  [[ "$ZSH_TMUX_ITERM2" == "true" ]] && tmux_cmd+="-CC"
  [[ "$ZSH_TMUX_FIXTERM" == "true" ]] && tmux_cmd+=(-f $_ZSH_TMUX_FIXED_CONFIG)
Andrew Janke's avatar
Andrew Janke committed
65
  if [[ -n "$@" ]]; then
Andrew Janke's avatar
Andrew Janke committed
66
    # We have other arguments, just run them
Andrew Janke's avatar
Andrew Janke committed
67
68
    \tmux $@
  elif [[ "$ZSH_TMUX_AUTOCONNECT" == "true" ]]; then
Andrew Janke's avatar
Andrew Janke committed
69
70
71
72
73
    # Try to connect to an existing session.
    $tmux_cmd attach || $tmux_cmd new-session
    if [[ "$ZSH_TMUX_AUTOQUIT" == "true" ]]; then
      exit
    fi
Andrew Janke's avatar
Andrew Janke committed
74
  else
Andrew Janke's avatar
Andrew Janke committed
75
76
77
78
79
    # Just run tmux, fixing the TERM variable if requested.
    $tmux_cmd
    if [[ "$ZSH_TMUX_AUTOQUIT" == "true" ]]; then
      exit
    fi
Andrew Janke's avatar
Andrew Janke committed
80
81
  fi
}
82

Andrew Janke's avatar
Andrew Janke committed
83
84
# Use the completions for tmux for our function
compdef _tmux _zsh_tmux_plugin_run
85

Andrew Janke's avatar
Andrew Janke committed
86
87
# Alias tmux to our wrapper function.
alias tmux=_zsh_tmux_plugin_run
88

Andrew Janke's avatar
Andrew Janke committed
89
90
91
92
93
94
95
# Autostart if not already in tmux and enabled.
if [[ ! -n "$TMUX" && "$ZSH_TMUX_AUTOSTART" == "true" ]]; then
  # 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
96
fi