[awesomerc] fix tabulous new tabbed view binding

This commit is contained in:
Lucas de Vries 2008-06-11 11:11:12 +02:00
parent 70a9a676ed
commit 0bd9e548ad
1 changed files with 11 additions and 3 deletions

View File

@ -182,12 +182,20 @@ keybinding.new({ modkey }, "F1", function () awful.menu("Run: ", mymenubox, awfu
--- Tabulous, tab manipulation --- Tabulous, tab manipulation
keybinding.new({ modkey, "Control" }, "y", function () keybinding.new({ modkey, "Control" }, "y", function ()
local tabbedview = tabulous.tabindex_get() local tabbedview = tabulous.tabindex_get()
local nextclient = awful.client.next(1)
if tabbedview == nil then
tabbedview = tabulous.tabindex_get(nextclient)
if tabbedview == nil then if tabbedview == nil then
tabbedview = tabulous.tab_create() tabbedview = tabulous.tab_create()
tabulous.tab(tabbedview, nextclient)
else
tabulous.tab(tabbedview, client.focus_get())
end
else
tabulous.tab(tabbedview, nextclient)
end end
tabulous.tab(tabbedview, awful.client.next(1))
end):add() end):add()
keybinding.new({ modkey, "Shift" }, "y", tabulous.untab):add() keybinding.new({ modkey, "Shift" }, "y", tabulous.untab):add()