QUEEN
QUEEN

Reputation: 413

Command 'Syso(Ctrl + " space")' not working in Eclipse IDE

My Eclipse IDE (version Juno) fails to show System.out.println() when I enter Syso(Ctrl + ‘Space’) according to rule. How to fix it? Why is this erratic behavior taking place? Let me inform, it doesn’t happen all the time but yes sometimes it does occur! My OS is Windows 8, 64-bit system.

Upvotes: 0

Views: 3567

Answers (2)

Dazak
Dazak

Reputation: 1033

Try just writing syso (lower case) and then push ctrl+space. If is still not working, then verify that you have selected the template...

Preferences->Java->Editor->Templates

Template select

Also verify that in the right side the column Auto Insert is on

Upvotes: 0

Zeus
Zeus

Reputation: 2253

You can go one step further and get Code assist in eclipse.

  1. Eclipse > Preferences > Java > Editor > Content Assist
  2. Auto Activation > Auto activation triggers for Java
  3. Enter all the characters you want to trigger autocomplete, such as the following:

    abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ._

Upvotes: 2

Related Questions