Re: [PATCH] remember focused window panes while changing focus

2014-01-22 Thread Nicholas Marriott
hi take a look at this please - tweaked style and naming somewhat, particularly we have never used focus for anything apart from the focus events before so no reason to start now also used a new member of layout_cell otherwise it changes the layout string (this seems like another thing that shou

Re: [PATCH] choose-list: add -d option for items delimiter

2014-01-22 Thread Nicholas Marriott
Hi The plan is to eventually remove choose-list as part of some other work on choose-*, so I don't think I'll use this sorry. On Wed, Dec 04, 2013 at 02:04:12PM +0800, Xiaochen Wang wrote: > Add [-d delim] option to choose-list command. > Then we can use 'delim' instead of comma to seperate lis

Re: Sharing a window

2014-01-22 Thread Nicholas Marriott
Hi. You can do it using a grouped session. Original message From: "L. V. Lammert" Date: 22/01/2014 16:26 (GMT+00:00) To: tmux-users@lists.sourceforge.net Subject: Sharing a window I was collaborating with a remote colleage yesterday, and noticed that when I created a new

Sharing a window

2014-01-22 Thread L. V. Lammert
I was collaborating with a remote colleage yesterday, and noticed that when I created a new window, *his* focus switched to that new window. Same for switching windows. It seems like the last time I used tmux for collaboration, each user had independent control of the current window? How can I co

Re: Get notification when other users views the same window

2014-01-22 Thread Nicholas Marriott
That's harder to do, I don't have time right now - I'll add it to the todo list. On Thu, Jan 09, 2014 at 06:09:25PM +0100, hubert depesz lubaczewski wrote: > On Thu, Jan 09, 2014 at 02:09:58PM +, Nicholas Marriott wrote: > > This should fix the make install thing: > > OK. What about changin

Re: patch allowing attach to take and select a pane

2014-01-22 Thread Nicholas Marriott
Yes - applied, thanks. On Sun, Jan 12, 2014 at 12:10:48AM -0600, J Raynor wrote: > On Mon, Jan 6, 2014 at 9:22 AM, Nicholas Marriott > wrote: > > Hmm... I don't know, people who include periods in session names are > > probably just asking for trouble but maybe we should ban them earlier. > >

Re: [PATCH] Improve mouse scroll during copy mode.

2014-01-22 Thread Nicholas Marriott
Applied, thanks. On Mon, Jan 20, 2014 at 02:25:38AM +0100, Benoit Pierre wrote: > Hi, > > Currently, tmux will automatically leave copy mode when scrolling to bottom > with the mouse. This patch tweaks the behaviour to stay in copy mode if a > selection is in progress so mouse scrolling does not

[PATCH] Fix escaping of # in status format

2014-01-22 Thread Azat Khuzhin
After c231381aa3a22340e787baaf78781d9b8ecd6a2c ("Demote the old single-character replacement variables #S") Before this patch, the next command produce '##S': set-option -g status-right '###S' --- I don't sure that this patch must edit format_expand(), but that was easier. format.c | 4 +++- sta