How to disable breadcrumbs in Eclipse

2019-01-01 06:37发布

How can I disable the Java editor breadcrumb in Eclipse?

11条回答
查无此人
2楼-- · 2019-01-01 07:11

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

查看更多
人气声优
3楼-- · 2019-01-01 07:12

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

查看更多
梦醉为红颜
4楼-- · 2019-01-01 07:13

Here it is : enter image description here

enter image description here

In the toolbar, toggle bread crumb option.

查看更多
君临天下
5楼-- · 2019-01-01 07:15

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?

查看更多
忆尘夕之涩
6楼-- · 2019-01-01 07:16

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.

查看更多
旧人旧事旧时光
7楼-- · 2019-01-01 07:17

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

查看更多
登录 后发表回答