Making Eclipse behave like Visual Studio

JavaAndroidEclipseVisual StudioIde

Java Problem Overview


I'm doing some Android development, and I much prefer Visual Studio, but I'll have to use Eclipse for this.

Has anyone made a tool which can make Eclipse look and behave more like visual studio? I mainly can't stand its clippyesqe suggestions on how I should program (Yes, I know I have not yet used that private field! Thanks Eclipse!), or its incredibly lousy intellisense.

For example, in eclipse, if I don't type this first, its intellisense won't realise I want to look for locally scoped members. Also, the TAB to complete VS convention is drilled into my head, and Eclipse is ENTER to complete, I could switch everything by hand but that would take hours, and I was hoping someone had some sort of theme or something that has already done it.

Java Solutions


Solution 1 - Java

There are also other choices for Java IDEs. You've obviously found Eclipse, but you also may want to check out IntelliJ and NetBeans. IntelliJ is not free, but has a 30 day evaluation period and a Visual Studio key map :)

Shop around, find one that you like and start to use it heavily. They are all very good IDEs, and I'm sure once you use one for a while you'll get comfortable with it.

Solution 2 - Java

Have you tried using the Visual Studio keybindings available in Eclipse Ganymede (3.4)?

(You may want to know that "IntelliSense" is a Visual Studio-term, an probably unknown to anyone without Visual Studio-experience. "Autocompletion" is probably a more widely used term.)

Solution 3 - Java

If you start typing the name of any class/variable visible in the current scope and hit Ctrl+Space, it'll bring down the autocompletion.

By default, tab is used to move around autocompleted function call arguments.

Solution 4 - Java

I'm gonna play devils advocate here and say that forcing you to use this.myString is actually much safer than just myString. myString could be defined locally (in the method) or in the class as a private member. I sometimes think Visual Studio is a bit cavalier about this. In the sample you mention (I saw the video but it was illegible) where is myString scoped?

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionFlySwatView Question on Stackoverflow
Solution 1 - JavaSteve KView Answer on Stackoverflow
Solution 2 - JavaJesperEView Answer on Stackoverflow
Solution 3 - JavaChris WatersView Answer on Stackoverflow
Solution 4 - JavajcollumView Answer on Stackoverflow