Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

With screen, in a terminal that's 80 columns wide, I can do something like:

for i in $(seq 81); do echo -n "m"; done; echo

and then resize the window to be a little wider, and the last 'm' jumps up to where it would have been had I run the command before resizing the window. I'm really loving tmux but am missing this lovely feature from screen... Is there any way to make tmux do this (some hidden recompute-width command I haven't found yet)?

share|improve this question

1 Answer

up vote 4 down vote accepted

tmux does not currently support “reflow” or “rewrap” (following the behavior of xterm).

The author of tmux has written several times that he does not personally like the reflow behavior of screen, but that he would consider incorporating it into tmux (as an option, presumably) if someone else were to implement it.

Mailing list references (older first; not an exhaustive list, just what I pulled up with a bit of searching):

share|improve this answer
Awesome thanks for the info. I just might have a whack at it... – mgalgs Oct 15 '11 at 15:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.