ervandew/eclim

vim command :ProjectRun fails with "requires python support"

Opened this issue · 0 comments

rtega commented

Vim on ubuntu 18.04 has been compiled with python3 support, not with python support. Changing the lines in the vim-code reading:
has('python')
into
has('python3')
solves this problem. Probably this should be changed into something like:
has('python') or has('python3')