lib: use Lua implementation of otable
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
58679a328b
commit
eac5936393
|
@ -11,7 +11,7 @@ local pairs = pairs
|
|||
local ipairs = ipairs
|
||||
local table = table
|
||||
local math = math
|
||||
local otable = otable
|
||||
local otable = require("otable")
|
||||
local setmetatable = setmetatable
|
||||
local capi =
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
local util = require("awful.util")
|
||||
local pairs = pairs
|
||||
local ipairs = ipairs
|
||||
local otable = otable
|
||||
local otable = require("otable")
|
||||
local capi =
|
||||
{
|
||||
hooks = hooks,
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
local math = math
|
||||
local image = image
|
||||
local pairs = pairs
|
||||
local otable = otable
|
||||
local otable = require("otable")
|
||||
local capi =
|
||||
{
|
||||
wibox = wibox,
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
-- Grab environment we need
|
||||
local math = math
|
||||
local type = type
|
||||
local otable = otable
|
||||
local otable = require("otable")
|
||||
local ipairs = ipairs
|
||||
local capi = { widget = widget,
|
||||
button = button }
|
||||
|
|
|
@ -9,7 +9,7 @@ local capi = { widget = widget,
|
|||
screen = screen,
|
||||
image = image,
|
||||
client = client }
|
||||
local otable = otable
|
||||
local otable = require("otable")
|
||||
local type = type
|
||||
local pairs = pairs
|
||||
local ipairs = ipairs
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
local capi = { screen = screen,
|
||||
image = image,
|
||||
client = client }
|
||||
local otable = otable
|
||||
local otable = require("otable")
|
||||
local ipairs = ipairs
|
||||
local table = table
|
||||
local hooks = require("awful.hooks")
|
||||
|
|
|
@ -10,7 +10,7 @@ local capi = { client = client }
|
|||
local table = table
|
||||
local pairs = pairs
|
||||
local awful = require('awful')
|
||||
local otable = otable
|
||||
local otable = require("otable")
|
||||
|
||||
--- Fabulous tabs
|
||||
module("tabulous")
|
||||
|
|
|
@ -9,7 +9,7 @@ local os = os
|
|||
local io = io
|
||||
local http = require("socket.http")
|
||||
local ltn12 = require("ltn12")
|
||||
local otable = otable
|
||||
local otable = require("otable")
|
||||
local setmetatable = setmetatable
|
||||
local util = require("awful.util")
|
||||
local hooks = require("awful.hooks")
|
||||
|
|
Loading…
Reference in New Issue