diff options
author | joshuashaffer <joshua.shaffer@icmrl.net> | 2020-06-19 17:16:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-19 23:16:31 +0200 |
commit | b706a919172955e16a1ab97f36a95b9ee4d9f1dc (patch) | |
tree | 6f831d00baec5efbe672023872723268d18be2d0 /lib/termsupport.zsh | |
parent | 8fe48793b525c21580ccfa8ee11af89fbd505bb0 (diff) | |
download | zsh-b706a919172955e16a1ab97f36a95b9ee4d9f1dc.tar.gz zsh-b706a919172955e16a1ab97f36a95b9ee4d9f1dc.tar.bz2 zsh-b706a919172955e16a1ab97f36a95b9ee4d9f1dc.zip |
core: add title support for mlterm (#8303)
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 3f71eb06a..e3237ca34 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) + 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 ;; |