I just tested this and eclim does report the second message, but not
the first. I'm not sure how eclipse is generating that first message,
but I'll make a note to look into it.
> Also, I find it annoying that I have to go back to my eclipse window
> to use Ctrl-B to build the project, is it possible to issue a build
> command in eclim to build the entire project??
You should be able to add something like this to your .gvimrc:
if has('netbeans_enabled')
nmap <silent> <c-b> :call eclim#vimplugin#FeedKeys('Ctrl+B')<cr>
endif
See the eclim docs for more info (scroll down to the "Eclipse/Vim key
shortcuts in embedded gvim" section, just past the screen shot):
http://eclim.sourceforge.net/eclimd.html#gvim-embedded
> Last but not least, is it possible to manipulate the project such that
> I can include an external jar within eclim for this project??
You can manipulate you project's .classpath file as described here:
http://eclim.sourceforge.net/vim/java/classpath.html
--
eric
I guess I misunderstood your usage scenario. If you are not launching
gvim from eclipse, then there is currently no way to run an eclipse
build from vim. Outside of the eclipse gui, eclim only provides
support for running ant, maven, or straight javac.
--
eric