From c54be9cd750a1efddaae76b229cf833f2d8054bd Mon Sep 17 00:00:00 2001 From: jack Date: Wed, 15 Apr 2020 22:35:40 +0800 Subject: [PATCH] Upgrade YCM to python3 --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 84ab80ec3..68669429b 100755 --- a/install.sh +++ b/install.sh @@ -91,9 +91,9 @@ cd $CURRENT_DIR/bundle/YouCompleteMe/ git submodule update --init --recursive if [ `which clang` ] # check system clang then - python install.py --clang-completer --system-libclang # use system clang + python3 install.py --clangd-completer --system-libclang # use system clang else - python install.py --clang-completer + python3 install.py --clangd-completer fi echo "Install Done!"