Re: tmux crash beg report

2010-12-11 Thread Nicholas Marriott
I can't reproduce with this command. Can you give exact steps to reproduce starting with no tmux running and no config file? Cheers On Sat, Dec 04, 2010 at 09:53:48AM -0500, Peter John Hartman wrote: > Oops. What generates the crash is rather this: > > bind F1 join-pane -d -t 0: \; select-lay

Re: tmux crash beg report

2010-12-06 Thread Nicholas Marriott
cheers, i'll try to have a look at this this week On Sat, Dec 04, 2010 at 09:53:48AM -0500, Peter John Hartman wrote: > Oops. What generates the crash is rather this: > > bind F1 join-pane -d -t 0: \; select-layout main-vertical \; display-pane > > > > On Sat, Dec 04, 2010 at 09:50:52AM -05

Re: tmux crash beg report

2010-12-04 Thread Peter John Hartman
Oops. What generates the crash is rather this: bind F1 join-pane -d -t 0: \; select-layout main-vertical \; display-pane On Sat, Dec 04, 2010 at 09:50:52AM -0500, Peter John Hartman wrote: > Hi all, > > Here are the steps to reproduce: > > 1. bind the following script to F1: > > #!/bin/sh >

tmux crash beg report

2010-12-04 Thread Peter John Hartman
Hi all, Here are the steps to reproduce: 1. bind the following script to F1: #!/bin/sh SESSION="$1" TMUX="tmux -Lmain" client=$($TMUX list-clients | cut -d' ' -f1) if $TMUX list-sessions | grep "^$1" >/dev/null; then $TMUX switchc -c$client -t$1 else $TMUX new-session -s$1 -d