I followed mbrochh's instruction https://github.com/mbrochh/vim-as-a-python-ide to build my vim as a python IDE. But things go wrong when openning the vim after I put jedi-vim
into ~/.vim/bundle
. The following is the warnings
Error detected while processing CursorMovedI Auto commands for "buffer=1":
Traceback (most recent call last)
Error detected while processing CursorMovedI Auto commands for "buffer=1":
File "string", line 1, in module
Error detected while processing CursorMovedI Auto commands for "buffer=1":
NameError: name 'jedi_vim' is not defined
I hope someone can figure out the problem and thanks for your help.
If you’re trying to use Vundle to install the jedi-vim plugin, I don’t think you should have to place it under
~/.vim/bundle
. Instead, make sure you have Vundle set up correctly, as described in its “Quick start”, and then try adding this line to your~/.vimrc
after the lines where Vundle is set up:Then run
:PluginInstall
and the plugin should be installed.