tmux.plugin.zsh 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. if ! (( $+commands[tmux] )); then
  2. print "zsh tmux plugin: tmux not found. Please install tmux before using this plugin." >&2
  3. return 1
  4. fi
  5. # ALIASES
  6. alias ta='tmux attach -t'
  7. alias tad='tmux attach -d -t'
  8. alias ts='tmux new-session -s'
  9. alias tl='tmux list-sessions'
  10. alias tksv='tmux kill-server'
  11. alias tkss='tmux kill-session -t'
  12. # CONFIGURATION VARIABLES
  13. # Automatically start tmux
  14. : ${ZSH_TMUX_AUTOSTART:=false}
  15. # Only autostart once. If set to false, tmux will attempt to
  16. # autostart every time your zsh configs are reloaded.
  17. : ${ZSH_TMUX_AUTOSTART_ONCE:=true}
  18. # Automatically connect to a previous session if it exists
  19. : ${ZSH_TMUX_AUTOCONNECT:=true}
  20. # Automatically close the terminal when tmux exits
  21. : ${ZSH_TMUX_AUTOQUIT:=$ZSH_TMUX_AUTOSTART}
  22. # Set term to screen or screen-256color based on current terminal support
  23. : ${ZSH_TMUX_FIXTERM:=true}
  24. # Set '-CC' option for iTerm2 tmux integration
  25. : ${ZSH_TMUX_ITERM2:=false}
  26. # The TERM to use for non-256 color terminals.
  27. # Tmux states this should be screen, but you may need to change it on
  28. # systems without the proper terminfo
  29. : ${ZSH_TMUX_FIXTERM_WITHOUT_256COLOR:=screen}
  30. # The TERM to use for 256 color terminals.
  31. # Tmux states this should be screen-256color, but you may need to change it on
  32. # systems without the proper terminfo
  33. : ${ZSH_TMUX_FIXTERM_WITH_256COLOR:=screen-256color}
  34. # Set the configuration path
  35. : ${ZSH_TMUX_CONFIG:=$HOME/.tmux.conf}
  36. # Set -u option to support unicode
  37. : ${ZSH_TMUX_UNICODE:=false}
  38. # Determine if the terminal supports 256 colors
  39. if [[ $terminfo[colors] == 256 ]]; then
  40. export ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITH_256COLOR
  41. else
  42. export ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITHOUT_256COLOR
  43. fi
  44. # Handle $0 according to the standard:
  45. # https://zdharma-continuum.github.io/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html
  46. 0="${${ZERO:-${0:#$ZSH_ARGZERO}}:-${(%):-%N}}"
  47. 0="${${(M)0:#/*}:-$PWD/$0}"
  48. # Set the correct local config file to use.
  49. if [[ "$ZSH_TMUX_ITERM2" == "false" && -e "$ZSH_TMUX_CONFIG" ]]; then
  50. export ZSH_TMUX_CONFIG
  51. export _ZSH_TMUX_FIXED_CONFIG="${0:h:a}/tmux.extra.conf"
  52. else
  53. export _ZSH_TMUX_FIXED_CONFIG="${0:h:a}/tmux.only.conf"
  54. fi
  55. # Wrapper function for tmux.
  56. function _zsh_tmux_plugin_run() {
  57. if [[ -n "$@" ]]; then
  58. command tmux "$@"
  59. return $?
  60. fi
  61. local -a tmux_cmd
  62. tmux_cmd=(command tmux)
  63. [[ "$ZSH_TMUX_ITERM2" == "true" ]] && tmux_cmd+=(-CC)
  64. [[ "$ZSH_TMUX_UNICODE" == "true" ]] && tmux_cmd+=(-u)
  65. # Try to connect to an existing session.
  66. [[ "$ZSH_TMUX_AUTOCONNECT" == "true" ]] && $tmux_cmd attach
  67. # If failed, just run tmux, fixing the TERM variable if requested.
  68. if [[ $? -ne 0 ]]; then
  69. if [[ "$ZSH_TMUX_FIXTERM" == "true" ]]; then
  70. tmux_cmd+=(-f "$_ZSH_TMUX_FIXED_CONFIG")
  71. elif [[ -e "$ZSH_TMUX_CONFIG" ]]; then
  72. tmux_cmd+=(-f "$ZSH_TMUX_CONFIG")
  73. fi
  74. if [[ -n "$ZSH_TMUX_DEFAULT_SESSION_NAME" ]]; then
  75. $tmux_cmd new-session -s $ZSH_TMUX_DEFAULT_SESSION_NAME
  76. else
  77. $tmux_cmd new-session
  78. fi
  79. fi
  80. if [[ "$ZSH_TMUX_AUTOQUIT" == "true" ]]; then
  81. exit
  82. fi
  83. }
  84. # Use the completions for tmux for our function
  85. compdef _tmux _zsh_tmux_plugin_run
  86. # Alias tmux to our wrapper function.
  87. alias tmux=_zsh_tmux_plugin_run
  88. # Autostart if not already in tmux and enabled.
  89. if [[ -z "$TMUX" && "$ZSH_TMUX_AUTOSTART" == "true" && -z "$INSIDE_EMACS" && -z "$EMACS" && -z "$VIM" ]]; then
  90. # Actually don't autostart if we already did and multiple autostarts are disabled.
  91. if [[ "$ZSH_TMUX_AUTOSTART_ONCE" == "false" || "$ZSH_TMUX_AUTOSTARTED" != "true" ]]; then
  92. export ZSH_TMUX_AUTOSTARTED=true
  93. _zsh_tmux_plugin_run
  94. fi
  95. fi