Skip to content

Commit

Permalink
fixed index generating progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
mkusher committed Aug 3, 2015
1 parent fd38aec commit bac79b8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions autoload/padawan.vim
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@ class PadawanClient:

vim.command("redraw | echo 'Progress "+barsStr+' '+str(progress)+"%'")
time.sleep(0.005)
time.sleep(0.005)
barsStr = ''
for i in range(20):
barsStr += '='
barsStr = '[' + barsStr + ']'
vim.command("redraw | echo 'Progress "+barsStr+" 100%'")
vim.command("echom 'Index generated'")

def ComposerDumpAutoload(self, curProject):
Expand Down

0 comments on commit bac79b8

Please sign in to comment.