mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-24 18:58:33 +02:00
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.
This commit is contained in:
parent
0a4342794a
commit
b7c2ca10e7
2 changed files with 1 additions and 9 deletions
|
@ -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 ()
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue