How can we accelerate our coding speed when we use eclipse? I want to use the prompt function of eclipse as one of the methods. The following describes how to configure the eclipse Lenovo function (code prompt function:
1. Open eclipse, and then "window" → "Preferences"
2. Select "Java", expand, "Editor", and select "content assist ".
3. Select "content assist" and then see the "auto activation triggers for Java" option under "auto-activation" on the right. In fact, it refers to the "." symbol that triggers the code prompt.
"Auto activation delay" is a latency, which can be set as needed. I set 10
4. The "Auto activation triggers for Java" option should be followed by an ABC letter after "." To facilitate subsequent search
Modify. Then, "Apply" and click "OK ".
5. Then, select "file"> "Export", select "perferences" in the pop-up window, and click "Next ".
6. Select the export file path, export it to the desktop, enter "test" as the file name, and click "save ".
7. Find the file "test. EPF" you just saved on the desktop, right-click and choose "open with Notepad ".
8. You can see a lot of eclipse configuration information.
9. Press the "Ctrl + F" shortcut key, enter ". ABC", and click "find next ".
10. Find the configuration information of ". ABC" as follows:
As follows:
/Instance/org. Eclipse. jdt. UI/content_assist_autoactivation_triggers_java =. ABC
11. Change ". ABC" to ". abcdefghijklmnopqrstuvwxyz" or ". abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz (", save, and disable "test. EPF ".
12. return to the eclipse interface, "file"> "import", select "perferences" in the pop-up window, click "Next", and select the "test. open the EPF file and click Finish ". This step is similar to the preceding export step.
13. Finally, of course, the code is tested. Create a project and a class. Enter switch and foreach in the Code for testing. You will immediately find that there are prompts, and there will be a lot of related prompts no matter which letter you typed, It is smooth and convenient.
Summary:
The "Auto activation triggers for Java" option is the option that triggers the code prompt. "to". abcdefghijklmnopqrstuvwxyz (, "refers to 26 letters and ., (These symbols trigger the code prompt function.
By the way, you can modify the class name and interface name highlighted in different colors. You can configure it in "Java"> "enditor"> "syntac ", expand "Java"> "classes" on the right side, check the "enable" option, and select your preferred color. Of course there are other related color configurations. Let's not talk about it. In fact, there are a lot of configuration items in the "Preferences", making myeclipse
The specific optimization requires individual to configure according to their personal preferences. Thank you.