Update YCM path : Valloric -> ycm-core

This commit is contained in:
Minsoo Kim 2019-08-12 16:33:53 +09:00 committed by GitHub
parent 226d6abeb2
commit 5ec7fafce9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -234,7 +234,7 @@ In that case, use `do` option to describe the task to be performed.
```vim ```vim
Plug 'Shougo/vimproc.vim', { 'do': 'make' } Plug 'Shougo/vimproc.vim', { 'do': 'make' }
Plug 'Valloric/YouCompleteMe', { 'do': './install.py' } Plug 'ycm-core/YouCompleteMe', { 'do': './install.py' }
``` ```
If the value starts with `:`, it will be recognized as a Vim command. If the value starts with `:`, it will be recognized as a Vim command.
@ -257,7 +257,7 @@ function! BuildYCM(info)
endif endif
endfunction endfunction
Plug 'Valloric/YouCompleteMe', { 'do': function('BuildYCM') } Plug 'ycm-core/YouCompleteMe', { 'do': function('BuildYCM') }
``` ```
Both forms of post-update hook are executed inside the directory of the plugin Both forms of post-update hook are executed inside the directory of the plugin