Reputation: 2210
Is there a way to use vim to debug python programs and have it look/act somewhat like Eclipse with the PyDev plugin?
What I mean by that is:
I'm aware that Eclipse is a full featured IDE while VIM is a lightweight generic text editor (and that each comes with its own set of features) but I like being able to work in a console because I have a Windows 7 machine and typically use an Ubuntu Virtualbox to learn and work in python.
I have done some research and found the following things, but none of them seem to do all of what I want to above:
If I misread the docs on either of the above also let me know and I'll dig back in.
Thanks!
Upvotes: 6
Views: 3425
Reputation: 21532
pyclewn is a variation of clewn
, which was suggested by user sehe.
From the webpage:
Pyclewn allows using vim as a front end to a debugger. Pyclewn currently supports gdb and pdb.
Upvotes: 2
Reputation: 392911
My vote is for clewn, allthough I admit I haven't used it for python code. Just C, C++ code, but yes it worked like a charm.
If I remember correctly I even got this working, to a degree, on AIX 5.3 with dbx.
Upvotes: 2