Browse code

Re-order title/tab setting to make window titles work on OSX terminal which doesn't support tabs titles.

Matt Cable authored on 13/03/2011 at 23:10:13
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