From b7c2ca10e74b42f74990bc11ef36fba8e83551dc Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 9 Jun 2014 19:56:22 +0200 Subject: [PATCH] bindings: use Mod+Tab to switch to the previous tag It was previously assigned to switch between two windows. I never used it as is. --- rc/bindings.lua | 8 -------- rc/tags.lua | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/rc/bindings.lua b/rc/bindings.lua index ac2681b..6a59427 100644 --- a/rc/bindings.lua +++ b/rc/bindings.lua @@ -189,14 +189,6 @@ config.keys.global = awful.util.table.join( end end, "Focus previous window"), - awful.key({ modkey, }, "Tab", - function () - awful.client.focus.history.previous() - if client.focus then - client.focus:raise() - end - end, - "Focus previously focused window"), awful.key({ modkey, }, "u", toggle_im, "Toggle Pidgin conversation window"), awful.key({ modkey, "Control" }, "j", function () diff --git a/rc/tags.lua b/rc/tags.lua index 07d6598..18b66c5 100644 --- a/rc/tags.lua +++ b/rc/tags.lua @@ -100,7 +100,7 @@ shifty.init() config.keys.global = awful.util.table.join( config.keys.global, keydoc.group("Tag management"), - awful.key({ modkey, "Control" }, "`", awful.tag.history.restore, "Switch to previous tag"), + awful.key({ modkey }, "Tab", awful.tag.history.restore, "Switch to previous tag"), awful.key({ modkey }, "Left", awful.tag.viewprev), awful.key({ modkey }, "Right", awful.tag.viewnext), awful.key({ modkey, "Shift"}, "o",