MIA Bustier y Coulotte 53% | Uñas esculpidas 50% | Juguera NOVA 56% | Gym Form Duo 64% | Paseo en Velero en Sailingche 64%

2012-04-08 Thread Bonus Cupon
Para visualizar correctamente este newsletter ingresa a http://www.bonuscupon.com/newsletter

Re: [cwm patch 1/6] Implement shell-like tab-completion for menus

2012-04-08 Thread Alexander Polakov
* Ted Unangst [120408 18:06]: > On Fri, Jan 20, 2012, Alexander Polakov wrote: > > I'm not sure how you got your clock so wrong, but I almost missed all > your mails because they did not show up where I expected them. My clock is fine, I sent the output of "git format-patch" to the list (which p

Re: [cwm patch 1/6] Implement shell-like tab-completion for menus

2012-04-08 Thread Ted Unangst
On Fri, Jan 20, 2012, Alexander Polakov wrote: I'm not sure how you got your clock so wrong, but I almost missed all your mails because they did not show up where I expected them.

Re: [cwm patch 3/6] Better modifier suppression detection

2012-04-08 Thread Alexander Polakov
* Stuart Henderson [120408 13:43]: > On 2012/01/20 00:15, Alexander Polakov wrote: > > The obvious solution: just check for every possible modifier. > > client.c: In function 'client_cycle': > client.c:641: error: 'struct screen_ctx' has no member named 'altpersist' It didn't apply cleanly with

Re: [cwm patch 1/6] Implement shell-like tab-completion for menus

2012-04-08 Thread Alexander Polakov
* Stuart Henderson [120408 13:42]: > On 2012/01/20 00:44, Alexander Polakov wrote: > > window/application menu: tab completes the word. > > exec menu: tab completes the word, when at the end > > of the word file menu appears. > > I like this quite a lot, but there is a bug in a directory with a >

Re: [cwm patch 3/6] Better modifier suppression detection

2012-04-08 Thread Stuart Henderson
On 2012/01/20 00:15, Alexander Polakov wrote: > The obvious solution: just check for every possible modifier. client.c: In function 'client_cycle': client.c:641: error: 'struct screen_ctx' has no member named 'altpersist'

Re: [cwm patch 1/6] Implement shell-like tab-completion for menus

2012-04-08 Thread Stuart Henderson
On 2012/01/20 00:44, Alexander Polakov wrote: > window/application menu: tab completes the word. > exec menu: tab completes the word, when at the end > of the word file menu appears. I like this quite a lot, but there is a bug in a directory with a lot of files, see http://junkpile.org/cwm-filelis

Re: [cwm patch 2/6] Focus MRU client when doing group_only()

2012-04-08 Thread Stuart Henderson
Undecided about this.. I like the auto-raising but not so keen on the pointer snapping around. On 2012/02/12 14:18, Alexander Polakov wrote: > diff --git a/calmwm.h b/calmwm.h > index b365983..9ac93b0 100644 > --- a/calmwm.h > +++ b/calmwm.h > @@ -319,6 +319,7 @@ void client_

Re: [cwm patch 4/6] Unmaximize window when moving it

2012-04-08 Thread Stuart Henderson
this will really get in my way, if it goes in, it needs to be configurable On 2012/02/12 14:18, Alexander Polakov wrote: > every window manager around does this, i guess > > diff --git a/client.c b/client.c > index 74bb2e2..1daa4c2 100644 > --- a/client.c > +++ b/client.c > @@ -438,7 +438,11 @@

Re: diff: fix bpf problem of pipex

2012-04-08 Thread mxb
On Apr 4, 2012, at 7:36 PM, YASUOKA Masahiko wrote: > Hi, > > On Wed, 4 Apr 2012 13:19:06 +0200 > Claudio Jeker wrote: >> On Wed, Apr 04, 2012 at 02:34:46PM +0900, Yasuoka Masahiko wrote: >>> On Tue, 31 Jan 2012 13:59:17 +0100 >>> "Sebastian Reitenbach" wrote: However, I noted with tcpdump,

[cwm patch 3/6] Better modifier suppression detection

2012-04-08 Thread Alexander Polakov
The obvious solution: just check for every possible modifier. diff --git a/calmwm.h b/calmwm.h index 9ac93b0..2de9578 100644 --- a/calmwm.h +++ b/calmwm.h @@ -202,7 +202,7 @@ struct screen_ctx { Window menuwin; struct color color[CWM_COLOR_MAX];

[cwm patch 5/6] Multibyte characters input for menus

2012-04-08 Thread Alexander Polakov
diff --git a/calmwm.c b/calmwm.c index 7e0df51..2ebd685 100644 --- a/calmwm.c +++ b/calmwm.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include @@ -62,6 +63,9 @@ main(int argc, char **argv) char*display_name = NULL; int

[cwm patch 6/6] Make raise on click work as expected

2012-04-08 Thread Alexander Polakov
mousebind "1" window_raise I wonder if it breaks something. diff --git a/xevents.c b/xevents.c index ad000f8..33bc185 100644 --- a/xevents.c +++ b/xevents.c @@ -261,6 +261,7 @@ xev_handle_buttonpress(XEvent *ee) return; (*mb->callback)(cc, e); + XAllowEvents(X_Dpy

[cwm patch 4/6] Unmaximize window when moving it

2012-04-08 Thread Alexander Polakov
every window manager around does this, i guess diff --git a/client.c b/client.c index 74bb2e2..1daa4c2 100644 --- a/client.c +++ b/client.c @@ -438,7 +438,11 @@ client_resize(struct client_ctx *cc) void client_move(struct client_ctx *cc) { - XMoveWindow(X_Dpy, cc->win, cc->geom.x, cc->ge

[cwm patch 1/6] Implement shell-like tab-completion for menus

2012-04-08 Thread Alexander Polakov
window/application menu: tab completes the word. exec menu: tab completes the word, when at the end of the word file menu appears. diff --git a/calmwm.h b/calmwm.h index 3aaac3e..b365983 100644 --- a/calmwm.h +++ b/calmwm.h @@ -257,7 +257,7 @@ TAILQ_HEAD(cmd_q, cmd); struct menu { TAILQ_E

[cwm patch 2/6] Focus MRU client when doing group_only()

2012-04-08 Thread Alexander Polakov
diff --git a/calmwm.h b/calmwm.h index b365983..9ac93b0 100644 --- a/calmwm.h +++ b/calmwm.h @@ -319,6 +319,7 @@ void client_map(struct client_ctx *); voidclient_maximize(struct client_ctx *); voidclient_move(struct client_ctx *);