refactor: rewrite TransNode and use main_loop in process instead of buffer function

This commit is contained in:
JuanZoran 2023-03-23 09:52:44 +08:00
parent 9b8c091a33
commit b44ab4bf2e

View File

@ -29,7 +29,7 @@ local text_meta = {
render = function(self, buffer, line, col)
local nodes = self.nodes
local step = self.step
local len = step and #step or 0
local len = step and #step or 0
for _, node in ipairs(nodes) do
node:render(buffer, line, col)
@ -73,7 +73,6 @@ local function format(args)
wid = wid + args[i][1]:width()
end
local space = math.max(math.floor((width - wid) / (size - 1)), 0)
args.step = spin:rep(space)
args.width = nil