AngryHacker
AngryHacker

Reputation: 61606

How to bring Visual Studio features to Eclipse?

Visual Studio refugee here. I've had to switch to Eclipse to write a couple of Java apps and I am really missing all the VS2008 goodness I've come to rely upon.

I am new to Eclipse, so I simply might not be finding what I need. With that in mind, how do I replicate the following in Eclipse.

  1. Right click on a source code tab, and open the folder
  2. Love VS' External Tools feature, which allows you to perform operations on a single file via tokens. Anyway to do this in Eclipse?
  3. Intellisense when editing XML files

Finally, can someone recommend a good newsgroup or a forum where Eclipse experts hang out (other than here)? I couldn't really find anything on the eclipse site.

Upvotes: 3

Views: 215

Answers (1)

Jon Skeet
Jon Skeet

Reputation: 1500525

  1. There are plug-ins available for this, such as StartExplorer, Eclipse Explorer

  2. Click on the "start button + toolbox" drop down menu next to "run" and "debug" and select "Open External Tools Dialog". This lets you run arbitrary tools.

  3. Intellisense for XML would normally be provided by the XML editor you're using. Look in Eclipse Plugin Central for XML plug-ins if the one which come with Eclipse aren't enough for you.

Upvotes: 4

Related Questions