diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-09-28 20:39:56 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-09-28 22:25:10 +0200 |
commit | 4ec055b890dc52749f6f9f076aa5da24c3266c8d (patch) | |
tree | 0c615b75b378701d2d911053d583ac2dc490198e /lib | |
parent | cd7162f3d17cf8883b8d205ea31e34012e050d36 (diff) | |
download | zsh-4ec055b890dc52749f6f9f076aa5da24c3266c8d.tar.gz zsh-4ec055b890dc52749f6f9f076aa5da24c3266c8d.tar.bz2 zsh-4ec055b890dc52749f6f9f076aa5da24c3266c8d.zip |
lib: support alacritty $TERM in title function
Diffstat (limited to 'lib')
-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 235efec6a..1bab61b2a 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*|alacritty) print -Pn "\e]2;${2:q}\a" # set window name print -Pn "\e]1;${1:q}\a" # set tab name ;; |