Hi Nicholas,
while testing your proposed fix I found that resizing my xterm
has similar effects: While only digits should be written/shown
in all of my panes, there is also a lot of whitespace.
I triggered this by maximizing (and restoring to former size)
via a hotkey or by changing the xterm's width with the mouse.
Different is, that it does not only happen when writing to the
bottom line of a pane and that refresh-client does not fix it.
When resizing with the mouse, the choosen layout is also lost:
My (again modified) trigger script requests "even-horizontal"
but that gets lost eventually. I guess this be due to integer
rounding and so maybe unfixable. Just in case I'm wrong. :-)
I tested/observerd this with tmux-git (9b32758a) plus your
fix for the first drawing bug, as well as with vanilla 2.7.
Thomas
--
You received this message because you are subscribed to the Google Groups
"tmux-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.
#!/bin/bash
[ "$TMUX" ] || exec echo please run within tmux on a busy system
tmux split-window -h -p 88 'while true; do sleep 0.1; echo -n 2; done'
tmux split-window -h -p 85 'while true; do sleep 0.1; echo -n 3; done'
tmux split-window -h -p 83 'while true; do sleep 0.1; echo -n 4; done'
tmux split-window -h -p 80 'while true; do sleep 0.1; echo -n 5; done'
tmux split-window -h -p 75 'while true; do sleep 0.1; echo -n 6; done'
tmux split-window -h -p 67 'while true; do sleep 0.1; echo -n 7; done'
tmux split-window -h -p 50 'while true; do sleep 0.1; echo -n 8; done'
tmux selectl even-horizontal
while true; do sleep 0.1; echo -n 1; done