]> git.madduck.net Git - etc/zsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fix up xterm window title handling
authormartin f. krafft <madduck@madduck.net>
Fri, 27 Mar 2020 23:26:45 +0000 (12:26 +1300)
committermartin f. krafft <madduck@madduck.net>
Fri, 27 Mar 2020 23:26:45 +0000 (12:26 +1300)
.zsh/zshrc/10-xterm_title

index c694eeb54842dc850b3ccd946c95d8f081c70c5f..05da3de6cdfe434d2d9c18a8495bdb8341ddb50a 100644 (file)
@@ -13,14 +13,20 @@ autoload -U add-zsh-hook
 
 __set_xterm_title() {
   emulate -L zsh
 
 __set_xterm_title() {
   emulate -L zsh
+  local typ
   case $TERM in
   case $TERM in
-    screen)
-      print -nR $'\033k'$1$'\033'\\ 
+    (tmux|tmux-*) typ=tmux;;
+    (screen|screen-*) if [ -n "$TMUX" ]; then typ=tmux else typ=screen fi;;
+    (*) typ=xterm
+  esac
+
+  case "$typ" in
+    (xterm) print -nR $'\033]0;'$*$'\a';;
+    (screen)
+      print -nR $'\033k'$1$'\033'\\
       print -nR $'\033]0;'$2$'\a'
       ;;
       print -nR $'\033]0;'$2$'\a'
       ;;
-    xterm|rxvt*)
-      print -nR $'\033]0;'$*$'\a'
-      ;;
+    (tmux) print -nR $'\033]2;'$*$'\a';;
   esac
 }
 
   esac
 }