Merge branch 'feature/fixed-bug-of-on-demand-loading'

This commit is contained in:
Junegunn Choi 2015-05-28 14:45:30 +09:00
commit 8e0fcf88c0

View file

@ -440,7 +440,7 @@ function! s:add(repo, ...)
call add(g:plugs_order, name)
endif
let g:plugs[name] = spec
let s:loaded[name] = 0
let s:loaded[name] = get(s:loaded, name, 0)
catch
return s:err(v:exception)
endtry