summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDawid Ferenczy <dawid@ferenczy.cz>2014-04-23 01:35:47 +0100
committerMarc Cornellà <marc.cornella@live.com>2015-12-01 13:52:52 +0100
commit63d7500cf1a62214f44a8c690852e687902fb3d3 (patch)
tree46bf492ee585f0a1f1a28ca74cb8b2fddea193e0 /lib
parentb457ae2501220e80490ecf7ae42e5610b61b75e4 (diff)
downloadzsh-63d7500cf1a62214f44a8c690852e687902fb3d3.tar.gz
zsh-63d7500cf1a62214f44a8c690852e687902fb3d3.tar.bz2
zsh-63d7500cf1a62214f44a8c690852e687902fb3d3.zip
Added setting of the window title in Cygwin
Diffstat (limited to 'lib')
-rw-r--r--lib/termsupport.zsh4
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