atjahfjvda
atjahfjvda

Reputation: 99

Custom settings for Eclipse IDE - Can I do stuff like this?

I looked through the settings/plugin pages but couldn't find what I needed, I am hoping to make the following things possible:

  1. While typing, eclipse should give me live predictions of what I could type next - Android Studio uses this feature, it shows me immediately what I maybe want to use, even whole Overrides can be live predicted - Eclipse otherwise doesn't show me anything right now...

  2. When saving automatically import missing classes

  3. When creating a new class automatically load a customizable preset instead of the empty class

  4. A theme like the popular dark theme "Moonrise UI" but with lighter gray background color.. Couldn't find one :/

Upvotes: 0

Views: 92

Answers (1)

guleryuz
guleryuz

Reputation: 2734

1. answer is here or

window > preferences > Java > Editor > Content Assist > Auto activation triggers for java > (type) ._abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ

2. answer is here or

window > Preferences > Java > Editor > Save Actions > (Configure)

3. code templates (window > preferences > Java > Code Style > Code Teplates > Code > New Java Files (and/or Class body)

4. ...

Upvotes: 1

Related Questions