1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 23:10:04 +08:00

Update manager.vim

close #1822
This commit is contained in:
Wang Shidong 2018-06-12 09:58:40 +08:00 committed by GitHub
parent adee8f326f
commit 557c19b692
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,7 +150,7 @@ function! SpaceVim#plugins#manager#install(...) abort
call s:set_buf_line(s:plugin_manager_buffer, 3, '')
endif
let s:start_time = reltime()
for i in range(g:spacevim_plugin_manager_max_processes)
for i in range(g:spacevim_plugin_manager_processes)
if !empty(s:plugins)
let repo = dein#get(s:LIST.shift(s:plugins))
if !empty(repo)
@ -201,7 +201,7 @@ function! SpaceVim#plugins#manager#update(...) abort
call s:set_buf_line(s:plugin_manager_buffer, 3, '')
endif
let s:start_time = reltime()
for i in range(g:spacevim_plugin_manager_max_processes)
for i in range(g:spacevim_plugin_manager_processes)
if !empty(s:plugins)
let reponame = s:LIST.shift(s:plugins)
let repo = dein#get(reponame)