One of the advantages of using eclipse is the auto-completion trigger function when inputting Java source code. However, it works after entering "." In normal operation, but is there a setting method when you want to make more use of it?
eclipse> Window (W)> Settings (P)
Set from Java> Editor> Content Assist> Auto Enable
--Automatic activation delay (milliseconds): 0
Default value: 0 ⇒ changed to the following
80
--Java auto-activation trigger :.
Default value: ⇒ Change to the following
.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_
--Javadoc auto-activation trigger: @ #
Default value:@#⇒ You can leave it as it is
@#
After clicking "Apply and Close", let's enter the Java source code.
https://www.christianschenk.org/blog/eclipse-java-content-assist-auto-activation-triggers/
Recommended Posts