mirror of
https://github.com/junegunn/vim-plug.git
synced 2024-12-19 18:47:29 -07:00
Fix on-demand loading: load ftdetect and **/*.vim as well
This commit is contained in:
parent
476a613746
commit
7e69a50890
4
plug.vim
4
plug.vim
@ -166,8 +166,8 @@ endfunction
|
|||||||
function! s:lod(plug)
|
function! s:lod(plug)
|
||||||
let rtp = s:rtp(a:plug)
|
let rtp = s:rtp(a:plug)
|
||||||
call s:add_rtp(rtp)
|
call s:add_rtp(rtp)
|
||||||
for dir in ['plugin', 'after']
|
for dir in ['plugin', 'ftdetect', 'after']
|
||||||
for vim in split(globpath(rtp, dir.'/*.vim'), '\n')
|
for vim in split(globpath(rtp, dir.'/**/*.vim'), '\n')
|
||||||
execute 'source '.vim
|
execute 'source '.vim
|
||||||
endfor
|
endfor
|
||||||
endfor
|
endfor
|
||||||
|
Loading…
Reference in New Issue
Block a user