0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

lib: support alacritty $TERM in title function

This commit is contained in:
Marc Cornellà 2020-09-28 20:39:56 +02:00
parent cd7162f3d1
commit 4ec055b890

View file

@ -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
;;