diff -r 73df43769340 -r b3c1a18fe12e awesome/rc.lua --- a/awesome/rc.lua Sun Sep 13 22:53:18 2015 -0400 +++ b/awesome/rc.lua Sat Apr 16 12:28:11 2016 -0400 @@ -389,7 +389,8 @@ if client.focus then local tag = get_prev_tag(client.focus.screen) awful.client.movetotag(tag) - awful.tag.viewprev() + -- Follow the client. + -- if follow then awful.tag.viewprev() end end), my.make_single_key("Shift+Next", "Send to Next View", @@ -397,7 +398,8 @@ if client.focus then local tag = get_next_tag(client.focus.screen) awful.client.movetotag(tag) - awful.tag.viewnext() + -- Follow the client. + -- if follow then awful.tag.viewnext() end end),