Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I disable the Java editor breadcrumb in Eclipse?

share|improve this question
unnaki.com/2009/06/eclipse-34-breadcrumbs-hide-and-show The above link answers the eclipse way of toggling things – Ramji Jun 1 '11 at 13:53
4  
unnaki.com/2009/06/eclipse-34-breadcrumbs-hide-and-show will help you get that done quick – Ramji Jun 1 '11 at 13:54

8 Answers

up vote 66 down vote accepted

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

Since Ganymede 3.4M5:

Initial Breadcrump GUI


Original answer (manual way, through key mapping)

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.

share|improve this answer
Thanks too much :D – Muhammad Hewedy Jun 20 '10 at 22:59
For some reason I didn't have the toolbar item, even though I had Java Editor Presentation checked. The key stroke worked. – NateS Sep 16 '10 at 7:15
Creating a shortcut is not necessary. The best answer is the one by Michael Borgwardt but also the one by Slava Semushin is very interesting. – Pino Apr 4 at 9:48

With the editor window focussed, look for this icon in your toolbar: button to click

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.

share|improve this answer
1  
Or via keyboard with command+option+b on the Mac (and I suppose ctrl+alt+b on others). – Fabian Steeg Jun 18 '10 at 21:37
1  
This is the correct answer. – Andrew Latham Aug 13 '12 at 20:36
This should be the accepted answer. – NomNomNom Feb 7 at 16:27
Handily the accepted answer's length necessitates scrolling this one into view =) – earcam Mar 18 at 22:43

Another way which works for me at Eclipse Indigo (3.7): press Ctrl+3 and type bread, after that click on item Toggle Java Editor Breadcrumb.

share|improve this answer

Look for this icon in the toolbar:
button to click

This button toggles the Breadcrumb view on/off.

(I'm using Eclipse 3.7, and it's there by default)

share|improve this answer

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?

share|improve this answer

RightClick on any icon on breadcrumb. There is an option named HIDE BREADCRUMB. Click it and you are done. :D

share|improve this answer

Change property breadcrumb.org.eclipse.jdt.ui.JavaPerspective from true to false in your org.eclipse.jdt.ui.prefs file.

share|improve this answer

In Juno: type 'Bread' and select 'Toggle Java Editor Breadcrumb'

share|improve this answer
1  
Is Juno and Eclipse the same thing? – Roger Wernersson Aug 16 '12 at 8:20
Juno is version 4.2 (currently the newest) of Eclipse. – James McCracken Jan 10 at 19:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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