Do not invoke YCM when no vim

This commit is contained in:
Cyryl Płotnicki-Chudyk 2016-08-05 10:04:58 +02:00
parent 1f8566dba5
commit c57fe3a92a

View file

@ -101,14 +101,13 @@ fi
if [[ -z $NOVIM ]]; then if [[ -z $NOVIM ]]; then
echo "\n" | vim +PluginInstall +qa echo "\n" | vim +PluginInstall +qa
fi cd "$DIR/.vim/bundle/YouCompleteMe/"
git submodule update --init --recursive
cd "$DIR/.vim/bundle/YouCompleteMe/" if [[ -z $NORUST ]]; then
git submodule update --init --recursive ./install.py --racer-completer --clang-completer
if [[ -z $NORUST ]]; then else
./install.py --racer-completer --clang-completer ./install.py --clang-completer
else fi
./install.py --clang-completer
fi fi
if [[ -z $NO_GO ]]; then if [[ -z $NO_GO ]]; then