tabulous: stop using otable
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
527bbfa0e0
commit
c47b5daf75
|
@ -9,14 +9,16 @@
|
|||
local capi = { client = client }
|
||||
local table = table
|
||||
local pairs = pairs
|
||||
local setmetatable = setmetatable
|
||||
local awful = require('awful')
|
||||
local otable = require("otable")
|
||||
|
||||
--- Fabulous tabs
|
||||
module("tabulous")
|
||||
|
||||
local tabbed_tags = otable() -- all tab tables, indexed by tab
|
||||
local tabbed = {} -- the current tag tab table
|
||||
-- all tab tables, indexed by tab
|
||||
local tabbed_tags = setmetatable({}, { __mode = 'k' })
|
||||
-- the current tag tab table
|
||||
local tabbed = {}
|
||||
|
||||
local active_tag
|
||||
|
||||
|
|
Loading…
Reference in New Issue