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
Prev Previous commit
changing name 'title' to 'prefix' for understandability.
  • Loading branch information
element-jatin committed Oct 31, 2018
commit d8bedbf617ae5663d32c95587c46efb71dc5c4e8
8 changes: 4 additions & 4 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -237,11 +237,11 @@ do
local times
local indices
local termLength = math.min(getTermLength(), 120)
function xlua.progress(current, goal, title)
function xlua.progress(current, goal, prefix)
-- sanity check
if title == nil then title = "" else title = tostring(title)..":" end
if prefix == nil then prefix = "" else prefix = tostring(prefix)..":" end
-- defaults:
local barLength = termLength - 34 - #title
local barLength = termLength - 34 - #prefix
local smoothing = 100
local maxfps = 10

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