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

Breakpoints don't work #16

Closed vojnovski closed 11 years ago

vojnovski commented 11 years ago

Instead of highlighting the line for which I set a breakpoint, I get a new line inserted with;

import pdb; pdb.set_trace() ### XXX BREAKPOINT

I suspect it might be a conflict with some other plugin or config I am using. Can you advise how to test it better?

jaredly commented 11 years ago

Hmm that's curious. The code that gets executed whne you set a breakpoint is here: https://github.com/jaredly/vim-debug/blob/master/vim_debug/new_debugger.py#L199

Perhaps there's a plugin listening for the "breakpoint_set" command? I think it must be a plugin conflict; which ones do you have installed?

vojnovski commented 11 years ago

I have since gotten http://pyclewn.sourceforge.net/ to work, and haven't pursued the issue. Thanks for the idea on where to look, in the unlikely event of having some spare time I'll look into it. For the moment, I'll close the issue. Thanks.