up vote 9 down vote favorite
1
share [g+] share [fb]

In emacs there is a handy way to launch the gdb and gui options for gdb, the C debugger.

Is there a similar option in gvim?

link|improve this question

64% accept rate
feedback

6 Answers

There's a project called cgdb which aims to provide this exact behavior. While it doesn't launch from vim the way emacs does, it provides vim like keybindings and behavior. Its features include a separate syntax highlighted source window which is kept up-to-date with the currently executing instruction.

link|improve this answer
feedback

Have a look at the Vim script search. I see at least 5 plugins that do what you want.

link|improve this answer
feedback

To complete jkramer's response, there is also pyclewn.

link|improve this answer
feedback

I don't think there is. I use different windows.

The only thing I can think of is

!gdb blah blah blah

but that may not be what you are looking for. It tends to be used to generate batch text that gets plugged back into the file you are editing.

Hope this helps.

link|improve this answer
feedback

Perhaps Agide is what you are looking for: http://www.a-a-p.org/ It's some kind of an open framework for using vim and gdb like an IDE.

link|improve this answer
feedback

IMHO, NONE of vim's gdb plug-ins works RELIABLY mainly because vim doesn't natively support shell integration. I use emacs+vimpulse.el. (vimpulse.el is an emacs package that emulates vim.) emacs+vimpulse.el behaves very similar to vim, and emacs supports gdb as nicely as anything out there. cgdb is very good too, but I prefer emacs+vimpulse because I don't have to remember shortcut keys in emacs. (M-x gud- shows all possible debug commands, and shortcut keys are reminded whenever a command is executed.) Also, emacs is much more customizable than cgdb.

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.