Reputation: 413
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
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
Also verify that in the right side the column Auto Insert
is on
Upvotes: 0
Reputation: 2253
You can go one step further and get Code assist in eclipse.
Enter all the characters you want to trigger autocomplete, such as the following:
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ._
Upvotes: 2