Trans.nvim/lua/Trans/node.lua

40 lines
897 B
Lua
Raw Normal View History

2023-01-26 20:28:19 +08:00
-- NOTE : 设置content的node
2023-01-31 23:17:03 +08:00
local item_load = function(self, content, line, col)
if self.hl then
content:newhl {
name = self.hl,
line = line,
_start = col,
_end = col + #self.text,
}
2023-01-26 20:28:19 +08:00
end
2023-01-31 23:17:03 +08:00
end
2023-01-26 20:28:19 +08:00
return {
item = function(text, hl)
2023-01-31 23:17:03 +08:00
return {
2023-01-26 20:28:19 +08:00
text = text,
hl = hl,
2023-01-31 23:17:03 +08:00
load_hl = item_load,
}
2023-01-26 20:28:19 +08:00
end,
text = function(...)
local items = { ... }
local strs = {}
for i, item in ipairs(items) do
strs[i] = item.text
end
2023-01-31 23:17:03 +08:00
return {
2023-01-26 20:28:19 +08:00
text = table.concat(strs),
2023-01-31 23:17:03 +08:00
load_hl = function(_, content, line, col)
for _, item in ipairs(items) do
item:load_hl(content, line, col)
col = col + #item.text
end
end
}
2023-01-26 20:28:19 +08:00
end,
}