Are there any ways to debug python scripts not leaving vim in *nix systems (executing the script, setting up breakpoints, showing variables in watch-list, etc)?
|
feedback
|
migrated from superuser.com Dec 14 '09 at 15:22
This question came from our site for computer enthusiasts and power users.
|
Use pdb... if __name__ == '__main__': main() Now run using | |||
feedback
|
|
It sounds like you want to use VIM as a Python IDE. A quick Google search found this and this example, with many more. EDIT: Well, Ok, it seems likely you've searched more than I have. I hope someone else has some ideas. | |||
feedback
|
|
See the "Debugging" section in this blog post. It shows how to setup F7 to set breakpoints and Shift+F7 to remove breakpoints. It also uses | |||
|
feedback
|
|
From what I know, there is one more option: You could use Eclipse + PyDev for project managing and Vim as an editor for Eclipse. That way You could use the best of both worlds. Also, I haven't tried it, but You could try this script. | ||||
|
feedback
|
|
Try pyclewn. It allows to use vim as front end for pdb. You can create/delete break points, control flow of debugging process, look at values of your variables. All from vim! | |||
|
feedback
|