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...)
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 } }, ----