Hi, I want to submit a patch which changes the toggleview function behaviour. When I pull a tag (and an assigned client to it) by using the toggleview function there is a good chance that I want it to be in focus. Here is the patch which will pull to the master area and focus the first client from the newly pulled tag. Now pulling tags become much more enjoyable.
Best regards.
--- a/dwm.c 2013-05-20 21:27:31.811893884 +0200 +++ b/dwm.c 2013-05-20 21:27:54.899605248 +0200 @@ -1774,10 +1774,20 @@ toggletag(const Arg *arg) { void toggleview(const Arg *arg) { unsigned int newtagset = selmon->tagset[selmon->seltags] ^ (arg->ui & TAGMASK); + Client *c = NULL; + unsigned int found = 0; if(newtagset) { selmon->tagset[selmon->seltags] = newtagset; - focus(NULL); + + for(c = selmon->clients; c && !(found = c->tags & arg->ui); c = c->next); + if(found && ISVISIBLE(c)) { + detach(c); + attach(c); + focus(c); + } + else + focus(NULL); arrange(selmon); } }