Issue
Right now when I insert a semi colon after something like:
Scanner(System.in);, it puts my cursor in-between the colon and the end parenthesis like this:
Scanner(System.in)|;
How do I get it to put my cursor here:
Scanner(System.in);|
I tried looking at this help link but it's out of date and the ones that do work don't work. Eclipse semicolon inserted before cursor when typing full line not using content assist
Solution
Under Window --> Preferences --> Java --> Editor --> Content Assist; inside the box "Auto Activation", I unchecked "Enable auto activation." That fixed it.
Answered By - user12905009
Answer Checked By - Marilyn (JavaFixing Volunteer)