From c8df51894e7b6bd84ab7fbaa2c764c82bfda19b4 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 9 Jul 2012 13:35:03 +0200 Subject: [PATCH] bindings: when moving to urgent window, merge tags instead of switching --- rc/bindings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/bindings.lua b/rc/bindings.lua index 26bb176..7f6f2ca 100644 --- a/rc/bindings.lua +++ b/rc/bindings.lua @@ -18,7 +18,7 @@ config.keys.global = awful.util.table.join( awful.client.focus.byidx(-1) if client.focus then client.focus:raise() end end), - awful.key({ modkey, }, "u", awful.client.urgent.jumpto), + awful.key({ modkey, }, "u", function () awful.client.urgent.jumpto(true) end), -- Layout manipulation awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),