summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authortobii-dev <77458451+tobii-dev@users.noreply.github.com>2025-05-18 19:14:44 +0200
committerGitHub <noreply@github.com>2025-05-18 19:14:44 +0200
commit881c8b78d3e3ade9bccfddb3e616842807d07a59 (patch)
tree7260b55d0b3f95f3ee86db0653db03b83a376cff /lib
parentc95509ebfdbcc3c497f12697cfd2717bcb0a528b (diff)
downloadzsh-881c8b78d3e3ade9bccfddb3e616842807d07a59.tar.gz
zsh-881c8b78d3e3ade9bccfddb3e616842807d07a59.tar.bz2
zsh-881c8b78d3e3ade9bccfddb3e616842807d07a59.zip
feat(termsupport): add WezTerm support (#13121)
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/termsupport.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/termsupport.zsh b/lib/termsupport.zsh
index d2fbf42cd..994c9c322 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*|alacritty*|st*|foot*|contour*)
+ cygwin|xterm*|putty*|rxvt*|konsole*|ansi|mlterm*|alacritty*|st*|foot*|contour*|wezterm*)
print -Pn "\e]2;${2:q}\a" # set window name
print -Pn "\e]1;${1:q}\a" # set tab name
;;