Fix local plugin judgement on Windows (#205)

This commit is contained in:
Junegunn Choi 2015-04-07 04:06:59 +09:00
parent 0e3e1cab75
commit 6a7efea26b

View file

@ -270,7 +270,7 @@ if s:is_win
endfunction endfunction
function! s:is_local_plug(repo) function! s:is_local_plug(repo)
return a:repo =~? '^[a-z]:' return a:repo =~? '^[a-z]:\|^[%~]'
endfunction endfunction
else else
function! s:rtp(spec) function! s:rtp(spec)