Description
I have tryed your great script in a raspbian RPI4 enviroment and I want to make some corrections to make work, that could be great to include...
- Need to previously install:
sudo apt install libncurses-dev python-dev python3-dev git ctags
- remove prevously vim (if installed)
sudo apt-get remove vim vim-runtime
-
Install vim from source with 'sudo'. Modify
'make -j $CPUS && sudo make install'
in 'install.sh' file -
Install rope in python3:
pip3 install --user rope ropemode ropevim -
Include in .vimrc:
" close vim if the only window left open is a NERDTree
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
Maybe could be great to change/update those pip2 versions to python3 as python2 is now EOL.
Thanks a lot for this.
Probably this could be best python3 IDE specially for ligthCPU envoroments like raspberry pi, so thanks for support this project.