From 92bcecddd69b5af8e681daab17cd3b31f0a8dfe0 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 14 Apr 2016 00:43:10 +0900 Subject: [PATCH] Revert "Use python2 for YCM post-installation" This reverts commit 367e61b6b0a628f1b6c90cb6f8520e4312f96e4c. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 33e3686..679c3ea 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,7 @@ In that case, use `do` option to describe the task to be performed. ```vim Plug 'Shougo/vimproc.vim', { 'do': 'make' } -Plug 'Valloric/YouCompleteMe', { 'do': 'python2 install.py' } +Plug 'Valloric/YouCompleteMe', { 'do': './install.py' } ``` If you need more control, you can pass a reference to a Vim function that @@ -208,7 +208,7 @@ function! BuildYCM(info) " - status: 'installed', 'updated', or 'unchanged' " - force: set on PlugInstall! or PlugUpdate! if a:info.status == 'installed' || a:info.force - !python2 install.py + !./install.py endif endfunction