From 651a47f80d7c141d33085f9c2f4d9fcf2c0fa157 Mon Sep 17 00:00:00 2001 From: cameris Date: Tue, 19 Jan 2016 00:19:18 +0100 Subject: [PATCH] Corrected endif typo --- autoload/vundle.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autoload/vundle.vim b/autoload/vundle.vim index f05d74b..a161366 100644 --- a/autoload/vundle.vim +++ b/autoload/vundle.vim @@ -89,12 +89,12 @@ let vundle#updated_bundles = [] if !exists('g:vundle#git_executable') let vundle#git_executable = 'git' -endf +endif if !exists('g:vundle#curl_executable') let vundle#curl_executable = 'curl' -endf +endif if !exists('g:vundle#wget_executable') let vundle#wget_executable = 'wget' -endf +endif " vim: set expandtab sts=2 ts=2 sw=2 tw=78 norl: