[PATCH] Implementation of the 'monitor' command

2013-02-25 Thread Thiago Padilha
Command that provides features for all synchronization needs in tmux scripts. I added an example script that serves a temporary documentation and shows the features provides by displaying a simple 'animation' which integrates multiple panes. I can see two issues with the current implementation:

Crash in current master

2013-02-25 Thread Aaron Jensen
If I have this binding: bind ^H run "tmux display-message -p '#{pane_current_command}'" If I hit it, it crashes. The real binding does more than that, I just stripped it down to the repro (In other words, I do need the `run`). The problem commit: 2ccb67c Aaron -

Re: split evenly

2013-02-25 Thread Thomas Adam
Hi, On 25 February 2013 03:29, KOIE Hidetaka wrote: > I'm using tmux to login to many server. > But, default layouting does not divide screen width/height evenly. > > This patch distributes remainder(=size%N) among panes. > Patch: http://ideone.com/rLuJHP Thanks, but I think this change is unwel

split evenly

2013-02-25 Thread 鯉江英隆
I'm using tmux to login to many server. But, default layouting does not divide screen width/height evenly. This patch distributes remainder(=size%N) among panes. Patch: http://ideone.com/rLuJHP Test driver: #!/bin/sh for X in 2 3 4 5 6 7 8 9 10 11 do tmux split-window -d -v -l3 done tmux sele