How can I beat the Eclipse autocomplete function?

Many times, when I type in a word in Android code in Eclipse, my computer freezes for up to 30 seconds, while Eclipse tries to find all possible commands to autocomplete my input. Also, every time I print a quote template, "autocomplete type another, which I have to remove. How can I defeat the autocomplete option, which ironically slows me down?

+4
source share
2 answers

There is a bug in Eclipse 3.6.1 that affects code completion (Code Assist). This is supposed to be a patch that will be in 3.6.2 when this happens, but this post from the Android Dev Google group shows the work around these patches 3.6.1. I tried this and it improves the world.

https://groups.google.com/d/msg/android-developers/El-6ufT3F7E/uhxmLoUqnQ8J

+6
source

This is a common problem with Eclipse, at least recently. I struggle with the same, although I'm not an Android developer, but I use 3.6.1, which is pretty old.

Parameters for inclusion:

  • Disconnect it completely (not practical, IMHO)
  • Filter packages that you do not need (filters like java-> appearance->)
  • You have fewer dependencies in your project.
  • Rotate Mylyn if you are not using it.
  • Make sure there is enough heap space in Eclipse.
0
source

Source: https://habr.com/ru/post/1341168/


All Articles