Added rope as a python package
This commit is contained in:
parent
0118603e26
commit
cee31387de
1 changed files with 3 additions and 3 deletions
|
@ -87,7 +87,7 @@ endfunction
|
||||||
|
|
||||||
"Setting up coc-tools
|
"Setting up coc-tools
|
||||||
function! s:handlepython(job_id, data, event_type)
|
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
|
endfunction
|
||||||
|
|
||||||
function! s:handleruby(job_id, data, event_type)
|
function! s:handleruby(job_id, data, event_type)
|
||||||
|
@ -113,8 +113,8 @@ endfunction
|
||||||
|
|
||||||
|
|
||||||
function! s:ensurePython()
|
function! s:ensurePython()
|
||||||
if (s:cmdexitcode('pyls -h') || s:cmdexitcode('python -c "import neovim"'))
|
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', 's:handlepython')
|
let l:jobid = s:asyncFunc('pip install python-language-server pynvim rope', 's:handlepython')
|
||||||
au VimEnter * CocInstall coc-python
|
au VimEnter * CocInstall coc-python
|
||||||
endif
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
Loading…
Add table
Reference in a new issue