Просмотр исходного кода

Update YCM path: Valloric -> ycm-core (#869)

Minsoo Kim 6 лет назад
Родитель
Сommit
0b32d2d23e
2 измененных файлов с 4 добавлено и 4 удалено
  1. 2 2
      README.md
  2. 2 2
      doc/plug.txt

+ 2 - 2
README.md

@@ -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

+ 2 - 2
doc/plug.txt

@@ -296,7 +296,7 @@ There are some plugins that require extra steps after installation or update.
 In that case, use `do` option to describe the task to be performed.
 In that case, use `do` option to describe the task to be performed.
 >
 >
     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.
 
 
@@ -317,7 +317,7 @@ takes a single argument.
       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
 and only run when the repository has changed, but you can force it to run
 and only run when the repository has changed, but you can force it to run