Hide status bar or progress bar in Eclipse

前端 未结 3 501
再見小時候
再見小時候 2021-02-01 07:59

How can I hide the status bar in Eclipse? I mean the one at the bottom, where also the \"Progress\" status is shown. It is very distracting because it is doing something all the

3条回答
  •  温柔的废话
    2021-02-01 08:42

    With CSS in Eclipse Juno there are endless possibilities to style Eclipse the way you like: edit the eclipse/plugins/org.eclipse.platform_4.2.2.v201302041200/css/e4_default_mac.css (adapt it to your Eclipse version and operating system).

    There, add the following lines:

    #org-eclipse-ui-trim-status,
    #org-eclipse-ui-trim-vertical1,
    #org-eclipse-ui-trim-vertical2 {
       visibility: hidden;
    }
    

    Now, not only the status bar but also the bars on the left and right are hidden. Before doing that, you might open the views you like to have and bring them to your preferred positions and assign a shortcut to them so that they will pop up whenever (and only when) you need them. Of course, you can undo that change any time.

提交回复
热议问题