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)?

link|improve this question

feedback

migrated from superuser.com Dec 14 '09 at 15:22

This question came from our site for computer enthusiasts and power users.

5 Answers

up vote 6 down vote accepted

Use pdb...

import pdb
def main():
  list = [1,2,3]
  pdb.set_trace()
  list = [2,3,4]

if __name__ == '__main__': main()

Now run using :!python % and you'll hit your breakpoint and be able to debug interactively like in gdb.

link|improve this answer
theres also ipdb which is a little ipython like, so more user friendly. – michael Dec 14 '09 at 22:27
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.

link|improve this answer
I've already read this article. The VimPDB mentioned there didn't work for me and gets broken each time i tried to use it. – varnie Dec 14 '09 at 13:14
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 pdb, as mentioned before. With a little modification, you can replace the use of pdb with ipdb (pdb using ipython), which is a lot nicer to use.

link|improve this answer
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.

link|improve this answer
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!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.