jaredly / vim-debug

A plugin for VIM that creates an Integrated Debugging Environment :) Currently works with PHP and Python
http://jaredforsyth.com/projects/vim-debug
MIT License
284 stars 28 forks source link

vim_debug expects 'pydbgp.py' on the $PATH #4

Closed mgedmin closed 14 years ago

mgedmin commented 14 years ago

Current git head expects pydbgp.py to be in your $PATH. But if you easy_install pydbgp, you get a script with no filename extension -- i.e. pydbgp.

Incidentally, this then causes issue #3 (AttributeError: Debugger instance has no attribute 'bend') when you try to :dbg quit.

jaredly commented 14 years ago

there's no such package "pydbgp"

jaredly commented 14 years ago

and actually, in the latest pydbgp I've changed it to pydbgp.py, so that it might have a prayer of working on windows

mgedmin commented 14 years ago
$ git clone git://github.com/jabapyth/pydbgp
$ easy_install ./pydbgp
$ pydbgp.py
pydbgp.py: command not found
$ pydbgp
pydbgp: error: scriptname not provided
See 'pydbgp --help'.
jaredly commented 14 years ago

ah yes -- I updated pypi, but forgot to push the changes back to github >.<

mgedmin commented 14 years ago

fair enough ;)