Don't use clang autocomplete
This commit is contained in:
parent
9afd980c2c
commit
ea561ec8a3
@ -846,13 +846,14 @@ function! s:names(...)
|
|||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:check_ruby()
|
function! s:check_ruby()
|
||||||
silent! ruby require 'thread'; VIM::command('let g:plug_ruby = 1')
|
silent! ruby require 'thread'; VIM::command("let g:plug_ruby = '#{RUBY_VERSION}'")
|
||||||
if get(g:, 'plug_ruby', 0)
|
if !exists('g:plug_ruby')
|
||||||
unlet g:plug_ruby
|
redraw!
|
||||||
return 1
|
return s:warn('echom', 'Warning: Ruby interface is broken')
|
||||||
endif
|
endif
|
||||||
redraw!
|
let ruby_version = split(g:plug_ruby, '\.')
|
||||||
return s:warn('echom', 'Warning: Ruby interface is broken')
|
unlet g:plug_ruby
|
||||||
|
return s:version_requirement(ruby_version, [1, 8, 7])
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:update_impl(pull, force, args) abort
|
function! s:update_impl(pull, force, args) abort
|
||||||
|
@ -39,7 +39,7 @@ Plug 'https://github.com/vim-airline/vim-airline.git'
|
|||||||
Plug 'https://github.com/vim-latex/vim-latex.git'
|
Plug 'https://github.com/vim-latex/vim-latex.git'
|
||||||
|
|
||||||
if has('unix')
|
if has('unix')
|
||||||
Plug 'https://github.com/Valloric/YouCompleteMe.git', { 'do': './install.sh --clang-completer' }
|
Plug 'https://github.com/Valloric/YouCompleteMe.git', { 'do': './install.sh' }
|
||||||
Plug 'https://github.com/marijnh/tern_for_vim', { 'do': 'sudo npm install -g tern; npm install' }
|
Plug 'https://github.com/marijnh/tern_for_vim', { 'do': 'sudo npm install -g tern; npm install' }
|
||||||
Plug 'https://github.com/scrooloose/syntastic.git', { 'do': 'sudo npm -g install eslint; sudo pip install --upgrade pyflakes' }
|
Plug 'https://github.com/scrooloose/syntastic.git', { 'do': 'sudo npm -g install eslint; sudo pip install --upgrade pyflakes' }
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user