Added autoload correctness

This commit is contained in:
Anthony Cicchetti 2019-11-15 09:40:38 -05:00
parent cee31387de
commit dc28587617

View file

@ -115,21 +115,21 @@ endfunction
function! s:ensurePython() function! s:ensurePython()
if (s:cmdexitcode('pyls -h') || s:cmdexitcode('python -c "import neovim"') || s:cmdexitcode('python -c "import rope"')) if (s:cmdexitcode('pyls -h') || s:cmdexitcode('python -c "import neovim"') || s:cmdexitcode('python -c "import rope"'))
let l:jobid = s:asyncFunc('pip install python-language-server pynvim rope', 's:handlepython') let l:jobid = s:asyncFunc('pip install python-language-server pynvim rope', 's:handlepython')
au VimEnter * CocInstall coc-python au VimEnter *.py CocInstall coc-python
endif endif
endfunction endfunction
function! s:ensureRuby() function! s:ensureRuby()
if (s:cmdexitcode('solargraph -v') || s:cmdexitcode('ruby -e "require \"neovim\""')) if (s:cmdexitcode('solargraph -v') || s:cmdexitcode('ruby -e "require \"neovim\""'))
let l:jobid = s:asyncFunc('gem install solargraph neovim', 's:handleruby') let l:jobid = s:asyncFunc('gem install solargraph neovim', 's:handleruby')
au VimEnter * CocInstall coc-solargraph au VimEnter *.rb CocInstall coc-solargraph
endif endif
endfunction endfunction
function! s:ensureNode() function! s:ensureNode()
if (s:cmdexitcode('neovim-node-host --version')) if (s:cmdexitcode('neovim-node-host --version'))
let l:jobid = s:asyncFunc('yarn global add neovim', 's:handlenode') let l:jobid = s:asyncFunc('yarn global add neovim', 's:handlenode')
au VimEnter * CocInstall coc-tsserver au VimEnter *.js,*.ts CocInstall coc-tsserver
endif endif
endfunction endfunction