I am trying to run the Xdebug vim plugin which is python dependent. Here is my environment: Windows 7 Professional 64bit, Vim 7.3. I have everything configured for this plugin, but when I press F5 nothing happens. I found several blogs describing some additional steps to get this working on Windows. They all stressed that the correct version of Python is installed correctly. I looked at the plugin code in the debugger.vim file and close to the top, which checks if python is available and exits if it is not. I inserted an echo command to tell me if python is not installed, and of course a window pops up telling you that. Here is the modified code:
if !has("python") echo 'python NOT loaded' finish endif
According to this blog http://phphints.wordpress.com/2008/08/20/add-debug-support-to-vim/ I need to install a version of python that includes a vim dll that searches when I run version command from vim. Mine Report:
-DDYNAMIC_PYTHON_DLL=\"python27.dll\" -DDYNAMIC_PYTHON3_DLL=\"python31.dll\"
So, I installed the 64-bit version of python 2.7.1. The same result, although python27.dll is located in the System 32 folder. I also tried to add the location of python.exe to PATH, but that did not help. I also tried installing the 64-bit version of python 3.1.3, but that didn't help. Any ideas?
source share