diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-07-23 12:55:22 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-07-23 12:55:22 +0200 |
commit | 95218372402afc9aeafc89c0984310387ce79599 (patch) | |
tree | fdda0534d9f45778a74bfb401ea2709db81d1195 /lib/termsupport.zsh | |
parent | db3d05fe7184a523fe4aba120bea962114424573 (diff) | |
download | zsh-95218372402afc9aeafc89c0984310387ce79599.tar.gz zsh-95218372402afc9aeafc89c0984310387ce79599.tar.bz2 zsh-95218372402afc9aeafc89c0984310387ce79599.zip |
lib: support mlterm-256color
Co-authored-by: Peter J. Schroeder <peterjschroeder@gmail.com>
Diffstat (limited to 'lib/termsupport.zsh')
-rw-r--r-- | lib/termsupport.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/termsupport.zsh b/lib/termsupport.zsh index 069b7f328..682925211 100644 --- a/lib/termsupport.zsh +++ b/lib/termsupport.zsh @@ -17,7 +17,7 @@ function title { : ${2=$1} case "$TERM" in - cygwin|xterm*|putty*|rxvt*|konsole*|ansi|mlterm) + cygwin|xterm*|putty*|rxvt*|konsole*|ansi|mlterm*) print -Pn "\e]2;$2:q\a" # set window name print -Pn "\e]1;$1:q\a" # set tab name ;; |