Browse Source

Match xterm-color, the default OS X terminal

master
Trevor Creech 14 years ago
parent
commit
36bc60455b
  1. 2
      lib/functions.zsh

2
lib/functions.zsh

@ -5,7 +5,7 @@ function title { @@ -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

Loading…
Cancel
Save