Rustam Issabekov
Rustam Issabekov

Reputation: 3497

Sublime Text 3 Java autocomplete

Lately I was seriously considering switching to Sublime Text 3 for all of my projects. Now that Sublime Text 3 has a goto definition feature it's definitely more useful. However, to be a happy programmer under Sublime I still need a proper Java auto completion. Sublime Text 2 has one - it is called sublimejava. Unfortunately this plug-in doesn't deliver the magic with Sublime Text 3.

Does anyone know if Sublime Text 3 has a working plug-in for Java autocomplete?

Upvotes: 9

Views: 31514

Answers (2)

tushortz
tushortz

Reputation: 5015

You can try JavaIME for helping with package imports and Java Imports Made Easy for method names completion.

Upvotes: 5

Eliza Weisman
Eliza Weisman

Reputation: 843

Sublime 3 does have basic autocompletion for Java baked-in - if you start typing "pub", for example, it'll suggest "public". I'd also suggest looking at the Javatar plugin, which adds things like automatic creation of classes, packages, and interfaces. The QuickJava plugin might also be worth a look - it adds automatic creation commands for setters, getters, and constructors.

Upvotes: 4

Related Questions