Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
added prefix title to progressbar and adjusted width of progressbar a…
…ccordingly
  • Loading branch information
element-jatin committed Oct 31, 2018
commit db1b1625d67554f5dc008b972a5e2010ff16f001
8 changes: 5 additions & 3 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,11 @@ do
local times
local indices
local termLength = math.min(getTermLength(), 120)
function xlua.progress(current, goal)
function xlua.progress(current, goal, title)
-- sanity check
if title == nil then title = "" else title = tostring(title)..":" end
-- defaults:
local barLength = termLength - 34
local barLength = termLength - 34 - #title
local smoothing = 100
local maxfps = 10

Expand All @@ -262,7 +264,7 @@ do
if (not barDone) then
previous = percent
-- print bar
io.write(' [')
io.write(title .. ' [')
for i=1,barLength do
if (i < percent) then io.write('=')
elseif (i == percent) then io.write('>')
Expand Down