Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vim - Auto-complete Java

I find myself wanting to auto-complete things that I import in the .java file I'm editing. So for example I'm working on Test.java, and inside I have import java.util.List;. Can I auto-complete (Ctrl+n) the methods inside the List interface so that when I do something like List l = new ArrayList(); l.<Ctrl+n> the methods show up?

like image 393
Luca Matteis Avatar asked Mar 25 '11 13:03

Luca Matteis


1 Answers

It may be possible to use Eclim to achieve this. I have no idea how usable this is, though.


(source: sourceforge.net)

like image 60
Konrad Rudolph Avatar answered Nov 02 '22 23:11

Konrad Rudolph