vote up 2 vote down star
1

I asked this question previously:

http://stackoverflow.com/questions/495268/any-good-tutorial-for-moving-from-eclipse-to-vim

From the inputs, I started using GVIM instead of Eclipse. I added ctags to it and I am able to navigate now comfortably.

Only problem left for me is "Debugging"? I tried searching for some links, and couldn't a useful one?

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

Thanks in advance.

flag

VIM is a text editor, it has many cool features but it's not an IDE. From that link to the other question I understand that they are hosting a VIM editor inside of eclipse not the other way around, hosting a debugging session in VIM... – John Leidegren Feb 13 at 7:31
Ya, I understand that it is an IDE and I am not using the Eclipse VIM plugin. I like VIM stand alone. I heard that we can debug CPP, PHP, etc in VI, So, my question is is there any possibility for debugging in Java. – Techmaddy Feb 13 at 8:25
for e.g: xdebug.org/index.php there for PHP debugging. – Techmaddy Feb 13 at 8:29

4 Answers

vote up 2 vote down check

Your best bet seems to be integration of the command line debugger jdb, one such solution is yavdb, another is JavaKit.

link|flag
I think the JavaKit sounds helpful. – Techmaddy Feb 13 at 8:31
vote up 2 vote down

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

link|flag
vote up 0 vote down

I don't know any debugging methods, but I use vim whenever I'm programming - no matter what language. Using Makefiles and binding make commands to some function keys was a big help to me. Some examples:

:map <F12>     :make<CR>:cclose<CR>:copen<CR>
:map <S-F12>   :make debug<CR>:cclose<CR>
:map <C-F12>   :make exec<CR>:cclose<CR>
:map <C-S-F12> :make clean<CR>
link|flag
vote up 0 vote down

You may not avoid installing a standalone debugger

(like an eclipse you will use only for remote debugging your application)

link|flag

Your Answer

Get an OpenID
or

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