Added autoload correctness
This commit is contained in:
parent
cee31387de
commit
dc28587617
1 changed files with 3 additions and 3 deletions
|
@ -115,21 +115,21 @@ endfunction
|
|||
function! s:ensurePython()
|
||||
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')
|
||||
au VimEnter * CocInstall coc-python
|
||||
au VimEnter *.py CocInstall coc-python
|
||||
endif
|
||||
endfunction
|
||||
|
||||
function! s:ensureRuby()
|
||||
if (s:cmdexitcode('solargraph -v') || s:cmdexitcode('ruby -e "require \"neovim\""'))
|
||||
let l:jobid = s:asyncFunc('gem install solargraph neovim', 's:handleruby')
|
||||
au VimEnter * CocInstall coc-solargraph
|
||||
au VimEnter *.rb CocInstall coc-solargraph
|
||||
endif
|
||||
endfunction
|
||||
|
||||
function! s:ensureNode()
|
||||
if (s:cmdexitcode('neovim-node-host --version'))
|
||||
let l:jobid = s:asyncFunc('yarn global add neovim', 's:handlenode')
|
||||
au VimEnter * CocInstall coc-tsserver
|
||||
au VimEnter *.js,*.ts CocInstall coc-tsserver
|
||||
endif
|
||||
endfunction
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue