I install this morning the vim8.0 version from the github http://www.vim.org/download.php
when launching vim and trying :echo has("python3")
it returns 0
(same for python)
After installing it and typing vim --version | grep python
I get:
+cryptv +linebreak +python/dyn +vreplace
+cscope +lispindent +python3/dyn +wildignore
looks like there could be problems if there is +python
and +python3
but is it the case with the /dyn
?
Following this i tried a lot of things to only have only python3
./configure --with-features=huge
--enable-multibyte \
--enable-rubyinterp=yes \
--enable-python3interp=yes \
--with-python3-config-dir=/usr/lib/python3.5/config-3.5m-x86_64-linux-gnu \
--enable-perlinterp=yes \
--enable-gui=gtk2 --enable-cscope --prefix=/usr \
--disable-pythoninterp \
(and many other commands...) but i cannot manage to get echo has("python3") return 1.
also tried to remove vim 8.0 and no way to remove it ...