From b706a919172955e16a1ab97f36a95b9ee4d9f1dc Mon Sep 17 00:00:00 2001 From: joshuashaffer Date: Fri, 19 Jun 2020 17:16:31 -0400 Subject: [PATCH] core: add title support for mlterm (#8303) --- lib/termsupport.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ;;