Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Specifying the Python interpreter for vim's :python command

(Mac)Vim seems to be picking up /usr/bin/python instead of the one that's at the front of my path (/Library/Frameworks/Python.framework/Versions/2.6/bin/python) when I use the :python command. Is this entirely a compile-time thing or can I somehow override it?

like image 859
dwf Avatar asked Jun 08 '10 16:06

dwf


1 Answers

Seems like it is an entirely compile-time thing:

$ ldd /usr/bin/vim | grep python
libpython2.5.so.1.0 => /usr/lib/libpython2.5.so.1.0 (0xb6bcc000)

my vim --version also reports being built against a specific python.

$ vim --version | tr '-' '\n' | grep python
+python +quickfix +reltime +rightleft +ruby +scrollbind +signs +smartindent 
I/usr/include/python2.5 
L/usr/lib/python2.5/config 
lpython2.5 

another symptom of this is that the :python command won't work with vim unless vim --version reports +python.

like image 96
Paul Ivanov Avatar answered Nov 11 '22 20:11

Paul Ivanov