Re: join pane with last active window

2012-12-21 Thread Thomas Adam
Hi, On 21 December 2012 12:01, Sinbad wrote: > how can i join pane with the last window > i've been to as the source window. Assuming current session: joinp -s! -- Thomas Adam -- LogMeIn Rescue: Anywhere, Anytime Remo

Re: join-pane problem

2012-09-15 Thread Franco
Indeed I misunderstood the default. Thanks, everything works perfect now -F On Fri, 14 Sep 2012 22:48:52 +0100 Thomas Adam wrote: > On Fri, Sep 14, 2012 at 07:16:24PM +, Franco wrote: > > Hello everyone. > > > > I recently started to use tmux and I ran into a problem which could be a > > bu

Re: join-pane problem

2012-09-14 Thread Thomas Adam
On Fri, Sep 14, 2012 at 07:16:24PM +, Franco wrote: > Hello everyone. > > I recently started to use tmux and I ran into a problem which could be a > bug. Let me paste the commands to recreate it: > > # My tmux session starts with one window, named '1:bash' > move-window -t 8 > new-window -d >

Re: join-pane crashes with revision 2860

2012-08-21 Thread Nicholas Marriott
Fixed, thanks. On Fri, Aug 17, 2012 at 12:15:50AM +0200, Michael Scholz wrote: > > Now that is interesting because this area of tmux hasn't changed in a > > while. Hmm. Does the following resolve the issue for you? > > > > diff --git a/trunk/names.c b/trunk/names.c > > index 11baae3..44b96ab 10

Re: join-pane crashes with revision 2860

2012-08-16 Thread Michael Scholz
> Now that is interesting because this area of tmux hasn't changed in a > while. Hmm. Does the following resolve the issue for you? > > diff --git a/trunk/names.c b/trunk/names.c > index 11baae3..44b96ab 100644 > --- a/trunk/names.c > +++ b/trunk/names.c > @@ -55,6 +55,10 @@ window_name_callback(

Re: join-pane crashes with revision 2860

2012-08-16 Thread Michael Scholz
On Thu, 16 Aug 2012, Nicholas Marriott wrote: > You're right. This is cos windows can now stick around w/o having any > panes or winlinks. This is the fix: Yes, it fixes the crash. Thank you very much for your fast fix! Mike -

Re: join-pane crashes with revision 2860

2012-08-16 Thread Thomas Adam
Hi, On 16 August 2012 15:06, Michael Scholz wrote: > After updating tmux-1.7 to revision 2860 join-pane doesn't work any > longer. One can reproduce it (without any ~/.tmux.conf file) with > > % tmux-1.7 new \; neww -d \; joinp -s 1 -t 0 > [lost server] > > and tmux-1.7 dumps core. Now that is

Re: join-pane crashes with revision 2860

2012-08-16 Thread Nicholas Marriott
You're right. This is cos windows can now stick around w/o having any panes or winlinks. This is the fix: Index: names.c === --- names.c (revision 2860) +++ names.c (working copy) @@ -50,6 +50,9 @@ struct window *w =

Re: join-pane

2010-12-23 Thread Allan Wind
On 2010-12-23T20:07:16, Nicholas Marriott wrote: > join-pane takes a pane target so it tries the target as a pane index > first, so in the -t0 case you are asking it to join with pane 0 in the > current window which is not possible. > > The -t1 case works because there is no pane 1 so it moves on

Re: join-pane

2010-12-23 Thread Nicholas Marriott
join-pane takes a pane target so it tries the target as a pane index first, so in the -t0 case you are asking it to join with pane 0 in the current window which is not possible. The -t1 case works because there is no pane 1 so it moves on to try windows. You need to qualify the target to make it