views:

378

answers:

3

How to disable breadcrumbs in eclipse

A: 

Something like http://loadcontext.blogspot.com/2008/08/eclipse-34-breadcrumbs-hide-and-show.html?

Customize Perspective, choose the Commands tab. In the Available command group, choose Java Editor Presentation. The Toolbar details shows the button for Toggle Breadcrumbs, which looks like a folder with a C in a circle with a black triangle on top of it.

Despite my absolute lack of experience with Eclipse, I suppose this setting must appear in other Presentation items too. After the button's enabled, all you have to do is click it. Or not?

MvanGeest
+2  A: 

If you are referring to the breadcrumbs in the help file of a RCP application, there is only a manual way to do it.

Find the file org.eclipse.help.webapp\advanced\breadcrumbs.css and replace its contents with.

.help_breadcrumbs {
   display: none;
}

For the Java Editor breadcrumb, you need to assign a shortcut to the "Toggle Java Editor Breadcrumb" command (I have tested Alt+B, for instance)

alt text

That shortcut will make the breadcrumb bar appear/disappear at will.

VonC
Thanks too much :D
Mohammed
For some reason I didn't have the toolbar item, even though I had Java Editor Presentation checked. The key stroke worked.
NateS
+3  A: 

With the editor window focussed, look for this icon in your toolbar: alt text

And click on it. That's all. The icon is present by default, but can be deactivated, in which case you have to activated as in MvanGeest's answer.

Michael Borgwardt
Or via keyboard with command+option+b on the Mac (and I suppose ctrl+alt+b on others).
Fabian Steeg