diff options
author | Markus (Vock) Arians <mvock@users.noreply.github.com> | 2022-02-25 13:29:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-25 13:29:22 +0100 |
commit | 99460351eb8d8d9d5ea2e44b66e1b9ceaaa4a368 (patch) | |
tree | 3b88afbac058c3b05d59074c96e295ace2de69b5 /lib | |
parent | e9348575371aa8ec8811356d997942559c026d07 (diff) | |
download | zsh-99460351eb8d8d9d5ea2e44b66e1b9ceaaa4a368.tar.gz zsh-99460351eb8d8d9d5ea2e44b66e1b9ceaaa4a368.tar.bz2 zsh-99460351eb8d8d9d5ea2e44b66e1b9ceaaa4a368.zip |
feat(lib): support auto title in foot terminal (#10735)
Co-authored-by: Markus Arians <markus.arians@andrena.de>
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 4035d10a1..80ca7ef78 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*) + cygwin|xterm*|putty*|rxvt*|konsole*|ansi|mlterm*|alacritty|st*|foot) print -Pn "\e]2;${2:q}\a" # set window name print -Pn "\e]1;${1:q}\a" # set tab name ;; |