diff options
author | Marc Cornellà <marc.cornella@live.com> | 2015-12-01 13:53:48 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2015-12-01 13:53:48 +0100 |
commit | 00344f7628099ad614a9db1b4a4d71155dc932ef (patch) | |
tree | 46bf492ee585f0a1f1a28ca74cb8b2fddea193e0 | |
parent | b457ae2501220e80490ecf7ae42e5610b61b75e4 (diff) | |
parent | 63d7500cf1a62214f44a8c690852e687902fb3d3 (diff) | |
download | zsh-00344f7628099ad614a9db1b4a4d71155dc932ef.tar.gz zsh-00344f7628099ad614a9db1b4a4d71155dc932ef.tar.bz2 zsh-00344f7628099ad614a9db1b4a4d71155dc932ef.zip |
Merge branch 'ferenczy-cygwin'
Close #2739
-rw-r--r-- | lib/termsupport.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/termsupport.zsh b/lib/termsupport.zsh index 9750a9fe8..f11a7dd18 100644 --- a/lib/termsupport.zsh +++ b/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 |