feat: add more bugs
This commit is contained in:
parent
ff36cfd549
commit
671e3cc7e7
@ -38,6 +38,7 @@ function M:insert(items)
|
|||||||
indent = items.indent,
|
indent = items.indent,
|
||||||
highlight = items.highlight,
|
highlight = items.highlight,
|
||||||
}
|
}
|
||||||
|
|
||||||
local 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,26 +1,29 @@
|
|||||||
local type_check = require("Trans.util.debug").type_check
|
local type_check = require("Trans.util.debug").type_check
|
||||||
|
|
||||||
|
|
||||||
local function format(items, interval)
|
|
||||||
|
|
||||||
|
local function format(component, interval)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local function process (opts)
|
local function process (opts)
|
||||||
type_check {
|
type_check {
|
||||||
opts = { opts, 'table' },
|
opts = { opts, 'table' },
|
||||||
['opts.field'] = { opts.field, 'table' },
|
['opts.field'] = { opts.field , 'table' },
|
||||||
['opts.order'] = { opts.order, 'table' },
|
['opts.order'] = { opts.order , 'table' },
|
||||||
['opts.win'] = { opts.win, 'table' },
|
['opts.win'] = { opts.win , 'table' },
|
||||||
['opts.engine'] = { opts.engine, 'table' },
|
['opts.engine'] = { opts.engine , 'table' },
|
||||||
}
|
}
|
||||||
|
|
||||||
local content = require('Trans.component.content'):new()
|
local content = require('Trans.component.content'):new()
|
||||||
|
|
||||||
for _, v in ipairs(opts.order) do
|
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)
|
content:insert(items)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
local lines, __highlight = content:data()
|
local lines, __highlight = content:data()
|
||||||
vim.api.nvim_buf_set_lines(opts.bufnr, 0, lines)
|
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)
|
print(a, b)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user