浏览代码

Merge branch 'ferenczy-cygwin'

Close #2739
Marc Cornellà 9 年之前
父节点
当前提交
00344f7628
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lib/termsupport.zsh

+ 2 - 2
lib/termsupport.zsh

@@ -9,7 +9,7 @@
 function title {
   emulate -L zsh
   setopt prompt_subst
-  
+
   [[ "$EMACS" == *term* ]] && return
 
   # if $2 is unset use $1 as default
@@ -18,7 +18,7 @@ function title {
 
   if [[ "$TERM" == screen* ]]; then
     print -Pn "\ek$1:q\e\\" #set screen hardstatus, usually truncated at 20 chars
-  elif [[ "$TERM" == xterm* ]] || [[ "$TERM" == putty* ]] || [[ "$TERM" == rxvt* ]] || [[ "$TERM" == ansi ]] || [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then
+  elif [[ "$TERM" == xterm* ]] || [[ "$TERM" == putty* ]] || [[ "$TERM" == rxvt* ]] || [[ "$TERM" == ansi ]] || [[ "$TERM" == cygwin ]] || [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then
     print -Pn "\e]2;$2:q\a" #set window name
     print -Pn "\e]1;$1:q\a" #set icon (=tab) name
   fi