how to hide the status bar in eclipse

送分小仙女□ 提交于 2019-11-30 05:59:53
rdok

I found another solution in my research of using the eclipse dark color theme: http://i.stack.imgur.com/3heiL.png

Solution requires to edit css of eclipse. Source: https://stackoverflow.com/a/17027501/2790481

  • If you've installed eclipse-color-theme plugin, you can just copy paste to Eclipse IDE -> Window -> Preferences -> Appearances -> Chrome Theme -> CSS:

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

  • If you use a custom theme then you'll have to edit that plugin's CSS. E.g. I had to edit this file eclipse\plugins\com.github.eclipseuitheme.themes.moonrise-ui_0.8.6.jar\themes\css\moonrise-ui-standalone.css and add the above CSS code at the end of moonrise-ui-standalone.css.

You can do this by using quick access. type 'toggle visibility' should find the command that will hide the status bar at the bottom of the window.

With the coming release of Eclipse, you'll be able to hide the status bar via menu.

see: https://bugs.eclipse.org/bugs/show_bug.cgi?id=501811

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!