Match xterm-color, the default OS X terminal

This commit is contained in:
Trevor Creech 2010-09-20 17:31:17 -07:00
parent 800cfb5c41
commit 36bc60455b

View File

@ -5,7 +5,7 @@ function title {
print -nR $'\033k'$1$'\033'\\\
print -nR $'\033]0;'$2$'\a'
elif [[ $TERM == "xterm" || $TERM == "rxvt" ]]; then
elif [[ $TERM =~ "^xterm" || $TERM == "rxvt" ]]; then
# Use this one instead for XTerms:
print -nR $'\033]0;'$*$'\a'
fi