Added rope as a python package

This commit is contained in:
Anthony Cicchetti 2019-11-15 09:18:19 -05:00
parent 0118603e26
commit cee31387de

View file

@ -87,7 +87,7 @@ endfunction
"Setting up coc-tools
function! s:handlepython(job_id, data, event_type)
call s:handlegeneric('pip install python-language-server pynvim', 'PYTHON', a:job_id, a:data, a:event_type)
call s:handlegeneric('pip install python-language-server pynvim rope', 'PYTHON', a:job_id, a:data, a:event_type)
endfunction
function! s:handleruby(job_id, data, event_type)
@ -113,8 +113,8 @@ endfunction
function! s:ensurePython()
if (s:cmdexitcode('pyls -h') || s:cmdexitcode('python -c "import neovim"'))
let l:jobid = s:asyncFunc('pip install python-language-server pynvim', 's:handlepython')
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
endif
endfunction