How to disable breadcrumbs in Eclipse
我怎样才能在Eclipse中禁用Java编辑器的面包屑?
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:
bread
, which points directly to the Toggle Java Editor Breadcrumb
option. Hide Breadcrumb
". Original answer (manual way, through key mapping)
Find the file org.eclipse.help.webappadvancedbreadcrumbs.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)
That shortcut will make the breadcrumb bar appear/disappear at will.
With the editor window focussed, look for this icon in your toolbar:
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.
在Eclipse Indigo(3.7)中适用于我的另一种方法是:按下Ctrl + 3并键入bread
,然后单击项目Toggle Java Editor Breadcrumb
。
上一篇: 更正WordPress的文件权限
下一篇: 如何在Eclipse中禁用面包屑