Re: [tmux:tickets] #120 Alt+Arrow binding no longer respected in 1.9

2014-05-23 Thread Nicholas Marriott
I think this can be made neater by making xterm_keys_modifiers do all the work directly rather than searching for the _ all over again, please look at this: diff --git a/xterm-keys.c b/xterm-keys.c index af3f1e7..5a49520 100644 --- a/xterm-keys.c +++ b/xterm-keys.c @@ -40,8 +40,8 @@ * We accept

Re: [PATCH] Mouse wheel support v6

2014-05-23 Thread Nicholas Marriott
Shouldn't we instead reset m->button when the mouse wheel is used? On Sat, May 17, 2014 at 10:44:17AM +0100, Balazs Kezes wrote: > Sorry, forgot to attach a simple patch to fix this: > > diff --git a/input-keys.c b/input-keys.c > index 7531f22..4c4da91 100644 > --- a/input-keys.c > +++ b/input-k

Re: [PATCH] Fix off by one error

2014-05-23 Thread Nicholas Marriott
Can you give me an example? It seems fine to me. On Sun, May 18, 2014 at 10:41:10AM +0100, Balazs Kezes wrote: > When you start a selection and then move a line up, then the starting > cell isn't indicated to be in the selection. It should be and this patch > fixes that. > --- > screen.c | 2 +-