]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Move code to change window title to own function.
authorSimon Ruderich <simon@ruderich.org>
Thu, 26 Feb 2009 17:19:58 +0000 (18:19 +0100)
committerSimon Ruderich <simon@ruderich.org>
Thu, 26 Feb 2009 17:19:58 +0000 (18:19 +0100)
This prevents code duplication.

zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 993f447fff1925a855115cd096f2f3161c451dbd..e49885e600f1522bb10a360ef08e4026ea49eba5 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -166,11 +166,7 @@ if [[ $TERM == screen || $TERM == xterm* ]]; then
         esac
 
         # Set the window name to the currently running program.
-        if [[ $TERM == screen ]]; then
-            print -n "\ek$program_name\e\\"
-        elif [[ $TERM == xterm* ]]; then
-            print -n "\e]2;$program_name\e\\"
-        fi
+        window_title "$program_name"
 
         # Tell precmd() to reset the window name when the program stops.
         window_reset=yes
@@ -181,16 +177,21 @@ if [[ $TERM == screen || $TERM == xterm* ]]; then
         [[ -z $window_reset ]] && return
 
         # Reset the window name to 'zsh'.
-        if [[ $TERM == screen ]]; then
-            print -n "\ekzsh\e\\"
-        elif [[ $TERM == xterm* ]]; then
-            print -n "\e]2;zsh\e\\"
-        fi
+        window_title "zsh"
 
         # Just reset the name, so no screen reset necessary for the moment.
         window_reset=
     }
 
+    # Sets the window title. Works with screen and xterm.
+    window_title() {
+        if [[ $TERM == screen ]]; then
+            print -n "\ek$1\e\\"
+        elif [[ $TERM == xterm* ]]; then
+            print -n "\e]2;$1\e\\"
+        fi
+    }
+
     # Add the preexec() and precmd() hooks.
     add-zsh-hook preexec window_preexec
     add-zsh-hook precmd window_precmd