How to disable automatic autocompletion and show documentation in eclipse?

1

I'm being forced to use eclipse because of college, and I've tried numerous tutorials and none solved my problems!

The first and the most is giving me a headache and when I write some codes they are automatically completed (without using the shortcut)

Example: when I try to write System.out.printf as soon as I open the relatives, eclipse already completes the code with System.out.printf (format, args)

The second one is that when I leave the mouse cursor on some command it opens a window with the documentation of the same, and it also annoys me a bit because sometimes it is difficult to edit some things.

I would like to know how to disable these things, since neon eclipse has many options.

    
asked by anonymous 19.03.2017 / 00:29

1 answer

2

To disable the autocomplete of parameters, go to the Window -> Preferences - > Java - > Editor - > Content Assist and uncheck the Fill method arguments and show guessed arguments as follows:

Andtodisablejavadoc'sdisplaywhenthemousegoesthroughsomemethod,gotoWindow->Preferences->Java->Editor->Hoversanduncheck" Combined Hover ":

DonotforgettoclickApplybeforeclickingok.

Seetheresultafterdisablingtheaboveoptions:

    
19.03.2017 / 00:51