pulled and merged upstream changes

This commit is contained in:
MatToufoutu 2010-12-21 12:08:40 +01:00
commit c3a46cd127
38 changed files with 548 additions and 28 deletions

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
@ -37,6 +37,7 @@ function take() {
mkdir -p $1
cd $1
}
<<<<<<< HEAD
function logview() {
if [ -x $(which ccze) ]; then
@ -54,3 +55,5 @@ function logtail() {
fi
}
=======
>>>>>>> upstream/master