Support resizing in tmux 1.5.
[profile.git] / opt / bin / usize
index 7221e60..39d8110 100755 (executable)
@@ -7,6 +7,7 @@
 
 width=${COLUMNS:-80}
 height=${LINES:-24}
+tmux_prefix=
 
 case $# in
   0)
@@ -17,5 +18,6 @@ case $# in
   2) width=$1; height=$2;;
 esac
 
-echo -e "\033[8;$height;$width;t"
+[ -n "$TMUX" ] && tmux_prefix="\033Ptmux;\033"
+echo -e "$tmux_prefix\033[8;$height;$width;t"
 exit 0