diff --git a/vim/vimrc b/vim/vimrc index 9ba0c11..868862e 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -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