7

Is there something equivalent to OmniCppComplete for java in vim ? I know of eclim but I think it is overkill for such a simple feature.

Naseer
  • 1,735
  • 2
  • 21
  • 22

3 Answers3

5

See http://www.vim.org/scripts/script.php?script_id=1785

user55400
  • 3,929
  • 1
  • 21
  • 13
4

Also found VJDE - http://www.vim.org/scripts/script.php?script_id=1213 - Need to evaluate which one is better/more up-to-date

Naseer
  • 1,735
  • 2
  • 21
  • 22
  • Judging from the amount of downloads, the last updates to the code, and the rating, your script seems to the better choice. FYI, I haven't used either. – user55400 May 08 '09 at 14:41
1

Seems you have some options for code-completion above.

I would recommend also grabbing a copy of TagList, which provides a sidebar displaying the structure of your current file.

The ctags which TagList uses can also be used for fast navigation in Vim. Ctrl+] over the text "curiousMethod()" should take you to the definition of that method.

joeytwiddle
  • 29,306
  • 13
  • 121
  • 110