Re: [PATCH] Usage string fixes

2010-08-01 Thread Nicholas Marriott
thanks, will put them in soon On Sat, Jul 31, 2010 at 11:37:19PM -0400, Ben Boeckel wrote: > Hi, > > Attached are two patches to fix the usage information for the join-pane > and paste-buffer usage strings. There's also a patch to remove a > trailing space in the CHANGES file if it's important.

Re: move-window -s $N -t $N kills window

2010-08-01 Thread Nicholas Marriott
Yeah this is a bug, try this: Index: server-fn.c === RCS file: /cvsroot/tmux/tmux/server-fn.c,v retrieving revision 1.108 diff -u -p -r1.108 server-fn.c --- server-fn.c 2 Jul 2010 02:45:52 - 1.108 +++ server-fn.c 1 Aug 2010

move-window -s $N -t $N kills window

2010-08-01 Thread Christian Neukirchen
Hi, If you pass the same arguments to -s and -t in move-window, the window gets closed. I expected nothing to happen. I found this writing #!/bin/sh # tmux-compress - renumber tmux windows in sequence. tmux lsw | awk -F: '/^[0-9]+/ { if ($1 != ++i) print "tmux move-window -s " $1 " -t " i }'