From ded1ab756222e8a2e427db392c654bd48f2e05ed Mon Sep 17 00:00:00 2001 From: Zack Hsi Date: Fri, 18 Sep 2015 10:51:40 -0700 Subject: [PATCH] Update YouCompleteMe install script The install script has been changed from `install.sh` to `install.py`. https://github.com/Valloric/YouCompleteMe/commit/1b40d683be7fdc38bf04c2e889036314551f0035 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4738d7b..6f2376a 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,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': './install.sh' } +Plug 'Valloric/YouCompleteMe', { 'do': './install.py' } ``` If you need more control, you can pass a reference to a Vim function that @@ -176,7 +176,7 @@ function! BuildYCM(info) " - status: 'installed', 'updated', or 'unchanged' " - force: set on PlugInstall! or PlugUpdate! if a:info.status == 'installed' || a:info.force - !./install.sh + !./install.py endif endfunction