From 6f487f15795dcc33488a193a0e418eb84015613d Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 14 Apr 2014 20:27:23 +0900 Subject: [PATCH] Explicitly return 0 --- plug.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug.vim b/plug.vim index 2e9e2a9..2042f64 100644 --- a/plug.vim +++ b/plug.vim @@ -70,7 +70,7 @@ function! plug#begin(...) let home = s:path(split(&rtp, ',')[0]) . '/plugged' else echoerr "Unable to determine plug home. Try calling plug#begin() with a path argument." - return + return 0 endif if !isdirectory(home)