Re: Changes to tmux-code.git on SF -- "master" branch rewound.

2013-04-10 Thread Ashwin G
I personally use mode-mouse only for scrolling text. I do not use it for select-pane. For copy-mode I prefer to use keyboard keys, since it is much efficient. If I want to select just a word, I use shift + mouse click (or double click) and copy it into the X11 default clipboard. On Wed, Apr 10,

Re: [PATCH] Explicitly enable EV_WRITE for jobs

2013-04-10 Thread Nicholas Marriott
Applied, thanks. On Tue, Apr 09, 2013 at 02:21:38PM -0500, Chris Johnsen wrote: > A job's bufferevent has EV_WRITE enabled by default, but libevent > internals prevent the job_write_callback from being invoked unless > we do (at least one of): > > - call bufferevent_enable with EV_WRITE, or >

Re: [Patch] fix bug where guards aren't printed after session exits

2013-04-10 Thread Nicholas Marriott
Applied, thanks. On Sat, Apr 06, 2013 at 06:37:18PM +0200, George Nachman wrote: > This fixes a bug in control mode. It occurs when unlinking the last > window in the current session. The %end guard is not printed because > the client's session is NULL after the last window is unlinked and the >

Re: Changes to tmux-code.git on SF -- "master" branch rewound.

2013-04-10 Thread Nicholas Marriott
Yes we could do but TBH I'm not sure it's worth the extra code. I'd really like to hear from people who do use the mouse - what options do they turn on? If they don't turn on mode-mouse, why not? I only use mouse-select-pane myself On Sat, Apr 06, 2013 at 04:12:50AM +, Ben Boeckel wrote: > O

Re: [PATCH 2/3] Document -o flag to set-window-option in manpage

2013-04-10 Thread Nicholas Marriott
Applied, thanks. On Sat, Apr 06, 2013 at 12:04:13AM -0400, Ben Boeckel wrote: > --- > tmux.1 | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/tmux.1 b/tmux.1 > index 05dfac6..ea4fdad 100644 > --- a/tmux.1 > +++ b/tmux.1 > @@ -2652,7 +2652,7 @@ The default is > .Ql \ -_

Re: [PATCH 1/3] Add wait-for command to tmux.vim

2013-04-10 Thread Nicholas Marriott
Applied, thanks. On Sat, Apr 06, 2013 at 12:04:12AM -0400, Ben Boeckel wrote: > --- > examples/tmux.vim | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/examples/tmux.vim b/examples/tmux.vim > index 076115c..e85f8ff 100644 > --- a/examples/tmux.vim > +++ b/examples/tmux.

Re: tmux and locales

2013-04-10 Thread Nicholas Marriott
I think this is not enough because clock.c uses strftime %p. It'll need a small change to make it use a fixed "AM" or "PM" string instead of %p. Do you want to do that too? On Fri, Apr 05, 2013 at 06:24:54PM +0200, Thomas Nemeth wrote: > > Hi. > > I've been using tmux for a long time an

Re: Using ? as prefix key?

2013-04-10 Thread Nicholas Marriott
This would be nice but it isn't supported at the moment and it might be a bit fiddly to do it because keys are currently represented by an integer. Ages ago I got halfway through converting it so keys could be a string and gave up because it was too painful. It's on the todo list anyway. On Thu,

Re: Commit 7360ff breaks compiling on OSX 10.6.8

2013-04-10 Thread Nicholas Marriott
Applied, thanks. On Tue, Apr 02, 2013 at 01:32:56PM +0900, OZAKI Kiichi wrote: > Sorry, my patch caused compile error. I didn't make sure the availability on > other OS X version (my env is 10.8.x). > > I replaced proc_bsdshortinfo by proc_bsdinfo, which exists on 10.5 and later. > https://gist

Re: binding PageUp to enter copy-mode

2013-04-10 Thread Nicholas Marriott
Well, no, it won't. The diff changes so that "copy-mode -u" will page up if run inside or outside copy mode. On Tue, Apr 02, 2013 at 02:53:18AM +, Daniel wrote: > On 2013-03-28, Nicholas Marriott wrote: > > Try this please: > > > > diff --git a/cmd-copy-mode.c b/cmd-copy-mode.c > > index f0