up vote 12 down vote favorite
2
share [g+] share [fb]

I was evaluating the Enterprise IDE plugin for Eclipse, and ultimately decided not to purchase it. After I uninstalled the plugin, I was left with a bunch of perspective buttons (the ones in the far upper-right-hand corner) which I can't remove. How do I get rid of the manually, without nuking my workspace?

Edit: To be clear, right-clicking and going to "close" does nothing. Not even an error message.

link|improve this question

1  
So just right-clicking and choosing close doesn't work? – Mike Houston May 21 '09 at 10:42
feedback

7 Answers

up vote 7 down vote accepted

How did you uninstall that plugin ?
Was it install in the dropins directory or in <eclipse>/plugins and <eclipse>/features ?

In the latter case, did you delete all directories/jar in /features, because if that plugin was packaged as a product, it did define in the product extension point a plugin_customization.ini which can indicate some perspective buttons.

If not, the only solution is to have a careful look at your workspace metadata, look for all recent file related to that plugin and remove them.
Make a copy of your workspace first though.

link|improve this answer
1  
+1 - Google search result upvote...thanks VonC! – KG. Jun 30 '09 at 2:23
@KG: You are welcome :) (And thank you Google!) – VonC Jun 30 '09 at 5:42
feedback

Window --> Preferences --> General --> Perspectives Select the perspective you want to delete and remove it. Some of them are unremovable. I don,t know why.

link|improve this answer
This helped clean up my perspectives. Thanks! – canadiancreed Nov 10 '09 at 15:52
It seems built-in perspectives cannot be deleted. – MarcH Sep 12 '11 at 17:22
feedback

I was suffering the same problem with a left-over perspective button for SVN repository Exploring. It wouldn't disappear using the close option. However it did disappear after selecting from Window -> Close All Perspectives.

Regards,

link|improve this answer
feedback

You could also try launching Eclipse with the -clean command line argument. This cleans out the Eclipse runtime cache, so it might fix your problem as well.

link|improve this answer
1  
Sadly, no, this didn't work. – Nik Reiman May 21 '09 at 15:21
feedback

<your workspace folder>/.metadata/.plugins/org.eclipse.ui.workbench/workbench.xml contains a <perspectives> element with <perspective> child elements. You can delete <perspective> elements and they will no longer appear in the toolbar. Eclipse writes to this file when it exits so your changes will be overwritten if you don't quit Eclipse first.

link|improve this answer
feedback

I had the same problem after installing a plugin. The answer is quite simple, if not obvious.

  1. Open Window | Preferences
  2. Click General node
  3. Click Perspectives

Find the perspective in the list and then select Delete command on the right.

The list will refresh and your perspective is deleted.

link|improve this answer
feedback

If you installed a plugin go to: Help-> Install new software -> click on "Whats already installed?" in the bottom right uninstall what you want, the perspective will be removed as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.