340

How can I disable the Java editor breadcrumb in Eclipse?

enter image description here

CiaPan
  • 9,381
  • 2
  • 21
  • 35
Muhammad Hewedy
  • 29,102
  • 44
  • 127
  • 219

11 Answers11

508

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

  • Michael Borgwardt mentions the toolbar icon dd
  • Slava Semushin provides a native shortcut based on Ctrl+3+bread, which points directly to the Toggle Java Editor Breadcrumb option.
  • Shachi reminds us below that you can right-click on any icon on the breadcrumb, and select the entry named "Hide Breadcrumb".

Hide breadcrumbs


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.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • 1
    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 07:15
  • 1
    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 04 '13 at 09:48
  • 1
    more than 70000 views and 400 upvotes - this looks like a serious useability issue in Eclipse. – Wolfgang Fahl Jun 30 '17 at 03:05
172

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.

jade
  • 744
  • 5
  • 16
Michael Borgwardt
  • 342,105
  • 78
  • 482
  • 720
62

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.

Slava Semushin
  • 14,904
  • 7
  • 53
  • 69
61
  1. RightClick on any icon on breadcrumb.
  2. There is an option named HIDE BREADCRUMB.
  3. Click it and you are done. :D
Shachi
  • 1,858
  • 3
  • 23
  • 41
26

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)

William Leara
  • 10,595
  • 4
  • 36
  • 58
18

Here it is : enter image description here

enter image description here

In the toolbar, toggle bread crumb option.

manoj
  • 3,391
  • 2
  • 20
  • 30
6

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
  • 9,536
  • 4
  • 41
  • 41
3

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

Rory McCrossan
  • 331,213
  • 40
  • 305
  • 339
1

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

Ustin
  • 21
  • 2
1

It very simple just right click in your class editor then select bread crumb or directly right click in top of your class in tool bar then select hide breadcrumb then its done.

0

When you see the BreadCrumb toolbar, right-click on the green class icon and then from the menu options click on Hide Breadcrumb.

amruta_kashikar
  • 33
  • 1
  • 1
  • 6