Comment the follow up behavior.
authorFabien Ninoles <fabien@tzone.org>
Sat, 16 Apr 2016 12:28:11 -0400
changeset 16 b3c1a18fe12e
parent 15 73df43769340
child 17 171cba5d3e3a
Comment the follow up behavior.
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),