Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding prefix title to progressbar and adjusting width of progressbar accordingly #24

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
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
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, prefix)
-- sanity check
if prefix == nil then prefix = "" else prefix = tostring(prefix)..":" end
-- defaults:
local barLength = termLength - 34
local barLength = termLength - 34 - #prefix
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(prefix .. ' [')
for i=1,barLength do
if (i < percent) then io.write('=')
elseif (i == percent) then io.write('>')
Expand Down