> hi. i had to make the below change to allow C-+ (which, on my > keyboard, at least, requires a shift) to zoom. (seems like this > *shouldn't* be needed, but...)
Hi Greg, Sorry for the delay in answering. I guess the “standard” expected keyboard would be the US qwerty, so yeah this modification would make sense (I don't have this issue myself though). Anybody against it? > cheers, Greg > ---- > diff --git a/config.def.h b/config.def.h > index fec6916..d0c6b7c 100644 > --- a/config.def.h > +++ b/config.def.h > @@ -133,6 +133,7 @@ static Key keys[] = { > { MODKEY|GDK_SHIFT_MASK, GDK_KEY_q, zoom, { .i = > 0 } }, { MODKEY, GDK_KEY_minus, zoom, { .i = > -1 } }, { MODKEY, GDK_KEY_plus, zoom, { .i = > +1 } }, > + { MODKEY|GDK_SHIFT_MASK, GDK_KEY_plus, zoom, { .i = > +1 } }, > { MODKEY, GDK_KEY_y, clipboard, { .i = > 0+2 } }, { MODKEY, GDK_KEY_p, clipboard, { .i = > 1+2 } }, ---- > — Quentin