@ -47,16 +47,22 @@ and
.B floating
mode.
.TP
.B Button2
click on a tag label adds/removes that
.B tag
to/from the focused
.B window.
.B Button3
click on a tag label adds/removes all windows with that
to/from the view.
.B Mod1-Button1
click on a tag label applies that
to the focused
.BR window .
.B Mod1-Button3
.SS Keyboard commands
.B Mod1-Shift-Return
@ -111,13 +111,16 @@ buttonpress(XEvent *e)
if(ev->x < x) {
switch(ev->button) {
case Button1:
view(&a);
break;
case Button2:
toggletag(&a);
if(ev->state & MODKEY)
tag(&a);
else
case Button3:
toggleview(&a);
}
return;