Browse code

Merge branch 'osx-terminal-title' of https://github.com/curiousstranger/oh-my-zsh into curiousstranger-osx-terminal-title

Robby Russell authored on 16/03/2011 at 15:01:29
Showing 1 changed files
... ...
@@ -6,8 +6,8 @@ function title {
6 6
   if [[ "$TERM" == "screen" ]]; then 
7 7
     print -Pn "\ek$1\e\\" #set screen hardstatus, usually truncated at 20 chars
8 8
   elif [[ ($TERM =~ "^xterm") ]] || [[ ($TERM == "rxvt") ]] || [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then
9
-    print -Pn "\e]2;$2\a" #set window name
10 9
     print -Pn "\e]1;$1\a" #set icon (=tab) name (will override window name on broken terminal)
10
+    print -Pn "\e]2;$2\a" #set window name
11 11
   fi
12 12
 }
13 13