]> git.madduck.net Git - etc/zsh.git/blobdiff - .zsh/zshrc/10-xterm_title

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:

simplify tty in xterm title
[etc/zsh.git] / .zsh / zshrc / 10-xterm_title
index b6958111f45cfa73c7c4dffacebd20bd934fdbc5..82f311a24c5182563e9f2290dcd3f84e2ef2eb00 100644 (file)
@@ -13,14 +13,20 @@ autoload -U add-zsh-hook
 
 __set_xterm_title() {
   emulate -L zsh
+  local typ
   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'
       ;;
-    xterm|rxvt*)
-      print -nR $'\033]0;'$*$'\a'
-      ;;
+    (tmux) print -nR $'\033]2;'$*$'\a';;
   esac
 }
 
@@ -37,7 +43,7 @@ __get_session_flags() {
 __get_standard_prompt() {
   emulate -L zsh
   [[ -z $SSH_CLIENT ]] || print -nP "%m"
-  print -P "%#%25\<..\<%~ $(__get_session_flags)"
+  print -P "@${${(%):-%l}#pts/}%#%25\<..\<%~ $(__get_session_flags)"
 }
 
 _set_plain_xterm_title() {