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:

  • Michael Borgwardt mentions the toolbar icon
  • 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 ".
  • 隐藏面包屑


    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

    链接地址: http://www.djcxy.com/p/39182.html

    上一篇: 更正WordPress的文件权限

    下一篇: 如何在Eclipse中禁用面包屑