Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get eclipse to automatically add a semicolon?

Tags:

java

eclipse

Here is the situation. I have the following Java code:

String a;
a.

Right after I press the "." I get the popup menu with the String methods. I choose one, fill in the arguments, but then I have to press the right-arrow key to get past the ) so I can type in the ;

In Emacs I used a macro (meta-Enter I think) which, when pressed, would add a semicolon to the end of the current line and then place me in the next line, at the proper indentation. Is there such a macro in eclipse?

like image 829
Jose M Vidal Avatar asked Aug 05 '10 19:08

Jose M Vidal


2 Answers

This inserts the semicolon at the end of the line, but you still have to type it :

Preferences > Java > Editor > Typing > check "semicolons"

Still, better than nothing.

like image 192
KeatsPeeks Avatar answered Oct 22 '22 16:10

KeatsPeeks


See this link.

"The preference is disabled by default, so you have to enable it. Go to Window > Preferences > Java > Editor > Typing. Then enable Semicolons under the section Automatically insert at correct position.

Now when you press semicolon from anywhere in a statement, Eclipse adds a semicolon to the end of the line and places the cursor right after the semicolon so you can start editing the next line."

like image 5
Hailong Cao Avatar answered Oct 22 '22 16:10

Hailong Cao