Naseer
Naseer

Reputation: 1745

Vim Java code completion?

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.

Upvotes: 7

Views: 10781

Answers (3)

joeytwiddle
joeytwiddle

Reputation: 31285

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.

Upvotes: 1

Naseer
Naseer

Reputation: 1745

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

Upvotes: 4

Related Questions