We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf8eb60 commit f18cce0Copy full SHA for f18cce0
init.lua
@@ -246,8 +246,6 @@ do
246
local termLength = getTermLength()
247
function progress(current, goal)
248
-- defaults:
249
- for i=1,termLength do glob.io.write(' ') end
250
- for i=1,termLength do glob.io.write('\b') end
251
local barLength = termLength - 34
252
local smoothing = 100
253
local maxfps = 10
@@ -278,6 +276,8 @@ do
278
276
else glob.io.write('.') end
279
277
end
280
glob.io.write('] ')
+ for i=1,termLength-barLength-4 do glob.io.write(' ') end
+ for i=1,termLength-barLength-4 do glob.io.write('\b') end
281
-- time stats
282
local elapsed = timer:time().real
283
local step = (elapsed-times[1]) / (current-indices[1])
0 commit comments