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
function! s:is_local_plug(repo)
return a:repo =~? '^[a-z]:'
return a:repo =~? '^[a-z]:\|^[%~]'
endfunction
else
function! s:rtp(spec)