How to encode in Eclipse as fast as in VisualStudio?

I am using code in VisualStudio using Resharper. And I quickly encode using the Resharper autocompletion function. When I switched to Java and Eclipse, I found out that Eclipse did not need a tool like Resharper, because Resharper was made so that VS could have features like Eclipse. After that, I printed out the list of Eclipse shortcuts and started coding.

But for a month or so, and I'm slowly programming. I tried setting up Eclipse intellisense (Content Assist) to open faster, but that didn't help. And the completion of the code is also too slow. For example, in VS, I just choose a method, and resharper puts a closing parenthesis + half an hour. Then Eclipse has one shortcut for intellisense and another for the termination variable (alt + /), wtf.

What should I install in Eclipse so that the code is as fast as in VS? Why does Resharper + VS make code faster than Eclipse? Am I missing some add-ons or some settings?

PS. I was not going to discredit Eclipse and did not start a propaganda topic. I like Eclipse. I work in it 12 hours a day, and I would like it to be faster than VS.

Please, help!

+4
source share
2 answers

Take a look at JetBrains IntelliJ. He imitates a lot of remade things, since they are made by the same company.

http://www.jetbrains.com/idea/

+3
source

ReSharper is the brainchild of JetBrains, the people who develop and market IntelliJ.

If you want to know what your ReSharper Java counterpart is, use IntelliJ.

I also liked Eclipse - until I was shown IntelliJ. That was six years ago; I have not returned.

+3
source

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


All Articles