Explicitly return 0

This commit is contained in:
Junegunn Choi 2014-04-14 20:27:23 +09:00
parent f8fcc81783
commit 6f487f1579

View File

@ -70,7 +70,7 @@ function! plug#begin(...)
let home = s:path(split(&rtp, ',')[0]) . '/plugged' let home = s:path(split(&rtp, ',')[0]) . '/plugged'
else else
echoerr "Unable to determine plug home. Try calling plug#begin() with a path argument." echoerr "Unable to determine plug home. Try calling plug#begin() with a path argument."
return return 0
endif endif
if !isdirectory(home) if !isdirectory(home)