Hi!
I've been happily using awesome for a few months.
I just changed from 3.1-rc2 to 3.1-rc3, and now I have a problem with
marking and tabbing. I added part of the "oficial" rc.lua from 3.1-rc2
to that of 3.1-rc3, because it went away from this, so I suppose this
might be my fault.
What happens now is that I can create tabs, but whenever I close a
window in a tab some strange behavior happens, sometimes ending with a
useless awesome, which I have to kill, and then restart my X session
again.

This is the part I'm using from my rc.lua:
-------------------------------------------------------------
keybinding({ modkey }, "t", awful.client.togglemarked):add()
keybinding({ modkey, 'Shift' }, "t", function ()
    local tabbedview = tabulous.tabindex_get()
    local clients = awful.client.getmarked()
    if not tabbedview then
        tabbedview = tabulous.tab_create(clients[1])
        table.remove(clients, 1)
    end
    for k,c in pairs(clients) do
        tabulous.tab(tabbedview, c)
    end
end):add()
keybinding({ modkey, "Control" }, "y", function ()
    local tabbedview = tabulous.tabindex_get()
    local nextclient = awful.client.next(1)
    if not tabbedview then
        tabbedview = tabulous.tabindex_get(nextclient)
        if not tabbedview then
            tabbedview = tabulous.tab_create()
            tabulous.tab(tabbedview, nextclient)
        else
            tabulous.tab(tabbedview, client.focus)
        end
    else
        tabulous.tab(tabbedview, nextclient)
    end
end):add()
keybinding({ modkey, "Shift" }, "y", tabulous.untab):add()
keybinding({ modkey }, "y", function ()
   local tabbedview = tabulous.tabindex_get()
   if tabbedview then
       local n = tabulous.next(tabbedview)
       tabulous.display(tabbedview, n)
   end
end):add()
-------------------------------------------------------------

Does the problem lie here?

Thanks!
-- 
Matías Graña
[EMAIL PROTECTED]

-- 
To unsubscribe, send mail to [EMAIL PROTECTED]

Reply via email to