6

The python invocation is defined in some of my .vim files.

:breakadd file linenumber xx.vim doesn't seem to work.

When I press a key that triggers the invocation of certain python functions, it doesn't stop at that line. What happened? By the way, I am in vim's debug mode since I opened the file using vim -D filename.

As shown by the following picture, what I want to do is debug a python function which is invoked when I press F5 in vim.

enter image description here

Conner
  • 30,144
  • 8
  • 52
  • 73
hugemeow
  • 7,777
  • 13
  • 50
  • 63

1 Answers1

1

I have done some simple check and I see that rpdb2 works when invoked from vim. So you can use it (with GUI frontend called winpdb or with console tool called also rpdb2).

http://winpdb.org/

zefciu
  • 1,967
  • 2
  • 17
  • 39