How to debug a Java application using VIM / GVIM?

I asked this question earlier ( any-good-tutorial-for-moving-from-eclipse-to-vim )

On inputs, I started using GVIM instead of Eclipse. I added ctags to it, and now I can navigate comfortably.

The only problem left for me is "Debugging"? I tried to find some links and could not find a useful file?

If anyone using or familiar with Java Debugging using vim / Gvim can provide their inputs / links / tutorials, that would be very helpful.

+24
java debugging vim editor
Feb 13 '09 at 7:28
source share
5 answers

It is best to integrate the jdb command line debugger, one of these solutions is yavdb , the other is JavaKit .

+12
Feb 13 '09 at 7:39
source share

Eclim now supports the Java debugger. See http://eclim.org/vim/java/debug.html

+2
Apr 19 '15 at 17:23
source share

You cannot avoid installing a standalone debugger

(for example, an eclipse that you will only use to debug your application remotely)

+1
Feb 13 '09 at 7:37
source share

Eclim offers integration between Vim and Eclipse. It should allow you to use the Eclipse debugger in Vim

+1
Feb 16 '09 at 17:46
source share

There is a great vim plugin for netbeans called jVi, http://jvi.sourceforge.net/

-2
Apr 16 '10 at 11:51 on
source share



All Articles