Reputation: 45
I have just installed the Eclipse IDE and I searched on the internet how to configure the autocomplete. I found a good method and after that I implemented it. But, now I'm very curious if the autocomplete can be set to show the proposals without filling them if I don't want to.
Upvotes: 0
Views: 556
Reputation: 679
I thing your question is that when you press the shotcut of automatic complete,then it fill the code automatically without a confirmation
the reason is that the result of your attemp to complete is just only one,so there is a mechanism that when the result of the attemp to complete is just only one,then it will be automatically filled
but you can set up this mechanism in in the following way
windows---preferences---java---editor---contentassist---insert single proposals automatically
Upvotes: 1
Reputation: 81
If you press CTRL + Space it should show the autocomplete and you just have to press enter for it to fill in.
Upvotes: 0