feat: add more bugs

This commit is contained in:
JuanZoran 2023-01-09 23:49:16 +08:00
parent ff36cfd549
commit 671e3cc7e7
4 changed files with 36 additions and 12 deletions

View File

@ -38,6 +38,7 @@ function M:insert(items)
indent = items.indent,
highlight = items.highlight,
}
local highlight = {}

View File

@ -0,0 +1,20 @@
local M = {}
M.__index = M
M.len = 0
function M:new()
local items = {}
setmetatable(items, self)
return items
end
function M:insert(item, highlight)
table.insert(self, item)
self.len = self.len + #item
end
function M:format(win_width)
end
return M

View File

@ -1,25 +1,28 @@
local type_check = require("Trans.util.debug").type_check
local function format(items, interval)
local function format(component, interval)
end
local function process (opts)
type_check {
opts = { opts, 'table' },
['opts.field'] = { opts.field, 'table' },
['opts.order'] = { opts.order, 'table' },
['opts.win'] = { opts.win, 'table' },
['opts.engine'] = { opts.engine, 'table' },
['opts.field'] = { opts.field , 'table' },
['opts.order'] = { opts.order , 'table' },
['opts.win'] = { opts.win , 'table' },
['opts.engine'] = { opts.engine , 'table' },
}
local content = require('Trans.component.content'):new()
for _, v in ipairs(opts.order) do
local items = format(require("Trans.component." .. opts.engine .. '.' .. v), 4)
content:insert(items)
local component = require("Trans.component." .. opts.engine .. '.' .. v)
for _, items in ipairs(component) do
format(items)
content:insert(items)
end
end
local lines, __highlight = content:data()

View File

@ -1,8 +1,8 @@
local a = 'test'
local a = {
'test1',
'test2',
'test3'
}
local b = a
b = b .. 'test'
print(a, b)