diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-03-05 17:26:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-05 17:26:16 +0100 |
commit | 2eb3e9d57cf69f3c2fa557f9047e0a648d80b235 (patch) | |
tree | 2a2a6c497731126a93b0aa7c356c4a63a52ead0d /lib | |
parent | 1ef3d57739b09f29ef07bf7c83b56ed5e996eab2 (diff) | |
download | zsh-2eb3e9d57cf69f3c2fa557f9047e0a648d80b235.tar.gz zsh-2eb3e9d57cf69f3c2fa557f9047e0a648d80b235.tar.bz2 zsh-2eb3e9d57cf69f3c2fa557f9047e0a648d80b235.zip |
lib: support konsole* $TERM in title function (#8035)
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 654927a1c..3f71eb06a 100644 --- a/lib/termsupport.zsh +++ b/lib/termsupport.zsh @@ -17,7 +17,7 @@ function title { : ${2=$1} case "$TERM" in - cygwin|xterm*|putty*|rxvt*|ansi) + cygwin|xterm*|putty*|rxvt*|konsole*|ansi) print -Pn "\e]2;$2:q\a" # set window name print -Pn "\e]1;$1:q\a" # set tab name ;; |