]> git.donarmstrong.com Git - zsh.git/blobdiff - .zsh/zshrc/85_xtermtitle
remove listsub/unsub and add disable r
[zsh.git] / .zsh / zshrc / 85_xtermtitle
index 8059ca88c2041044dddaca526af19722ae4edd81..da7a9a47e9160bfe6f62fbb78e02e12685ccae04 100644 (file)
@@ -1,3 +1,4 @@
+# -*- mode: sh -*-
 # zshrc/80_xtermtitle
 #
 # Fancy setting of the xterm title
 
 __set_xterm_title() {
   case $TERM in
-    screen)
+    screen*)
       print -nR $'\033k'$1$'\033'\\ 
       print -nR $'\033]0;'$2$'\a'
       ;;
-    xterm|rxvt*)
+    xterm*|rxvt*)
       print -nR $'\033]0;'$*$'\a'
       ;;
   esac