termsupport.zsh 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # Set terminal window and tab/icon title
  2. #
  3. # usage: title short_tab_title [long_window_title]
  4. #
  5. # See: http://www.faqs.org/docs/Linux-mini/Xterm-Title.html#ss3.1
  6. # Fully supports screen, iterm, and probably most modern xterm and rxvt
  7. # (In screen, only short_tab_title is used)
  8. # Limited support for Apple Terminal (Terminal can't set window and tab separately)
  9. function title {
  10. [[ "$EMACS" == *term* ]] && return
  11. # if $2 is unset use $1 as default
  12. # if it is set and empty, leave it as is
  13. : ${2=$1}
  14. if [[ "$TERM" == screen* ]]; then
  15. print -Pn "\ek$1:q\e\\" #set screen hardstatus, usually truncated at 20 chars
  16. elif [[ "$TERM" == xterm* ]] || [[ "$TERM" == rxvt* ]] || [[ "$TERM" == ansi ]] || [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then
  17. print -Pn "\e]2;$2:q\a" #set window name
  18. print -Pn "\e]1;$1:q\a" #set icon (=tab) name
  19. fi
  20. }
  21. ZSH_THEME_TERM_TAB_TITLE_IDLE="%15<..<%~%<<" #15 char left truncated PWD
  22. ZSH_THEME_TERM_TITLE_IDLE="%n@%m: %~"
  23. # Runs before showing the prompt
  24. function omz_termsupport_precmd {
  25. if [[ $DISABLE_AUTO_TITLE == true ]]; then
  26. return
  27. fi
  28. title $ZSH_THEME_TERM_TAB_TITLE_IDLE $ZSH_THEME_TERM_TITLE_IDLE
  29. # Notify Terminal.app of current directory using undocumented OSC sequence
  30. # found in OS X 10.9 and 10.10's /etc/bashrc
  31. if [[ $TERM_PROGRAM == Apple_Terminal ]] && [[ -z $INSIDE_EMACS ]]; then
  32. local PWD_URL="file://$HOSTNAME${PWD// /%20}"
  33. printf '\e]7;%s\a' "$PWD_URL"
  34. fi
  35. }
  36. # Runs before executing the command
  37. function omz_termsupport_preexec {
  38. if [[ $DISABLE_AUTO_TITLE == true ]]; then
  39. return
  40. fi
  41. emulate -L zsh
  42. setopt extended_glob
  43. # cmd name only, or if this is sudo or ssh, the next cmd
  44. local CMD=${1[(wr)^(*=*|sudo|ssh|rake|-*)]:gs/%/%%}
  45. local LINE="${2:gs/%/%%}"
  46. title '$CMD' '%100>...>$LINE%<<'
  47. }
  48. precmd_functions+=(omz_termsupport_precmd)
  49. preexec_functions+=(omz_termsupport_preexec)