feat: add more bugs
This commit is contained in:
parent
ff36cfd549
commit
671e3cc7e7
@ -38,6 +38,7 @@ function M:insert(items)
|
||||
indent = items.indent,
|
||||
highlight = items.highlight,
|
||||
}
|
||||
|
||||
local highlight = {}
|
||||
|
||||
|
||||
|
20
lua/Trans/component/items.lua
Normal file
20
lua/Trans/component/items.lua
Normal 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
|
@ -1,8 +1,8 @@
|
||||
local type_check = require("Trans.util.debug").type_check
|
||||
|
||||
|
||||
local function format(items, interval)
|
||||
|
||||
local function format(component, interval)
|
||||
end
|
||||
|
||||
|
||||
@ -18,9 +18,12 @@ local function process (opts)
|
||||
local content = require('Trans.component.content'):new()
|
||||
|
||||
for _, v in ipairs(opts.order) do
|
||||
local items = format(require("Trans.component." .. opts.engine .. '.' .. v), 4)
|
||||
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()
|
||||
vim.api.nvim_buf_set_lines(opts.bufnr, 0, lines)
|
||||
|
@ -1,8 +1,8 @@
|
||||
local a = 'test'
|
||||
local a = {
|
||||
'test1',
|
||||
'test2',
|
||||
'test3'
|
||||
}
|
||||
|
||||
|
||||
local b = a
|
||||
|
||||
b = b .. 'test'
|
||||
|
||||
print(a, b)
|
||||
|
Loading…
x
Reference in New Issue
Block a user