eclipse 如何在eclipse中隐藏状态栏
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/5645495/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
how to hide the status bar in eclipse
提问by kostja
Is there a way to hide the quite large status bar cluttering the bottom of the eclipse window ? (where the heap status, line and column count and further non-essential info is shown).
I am forced to work on a tiny screen here so I already have the fullscreen plugininstalled and hide the regular toolbar per default, but a few more pixels would definitely help ease the pain of a 4:3 19".
有没有办法隐藏在日食窗口底部杂乱无章的相当大的状态栏?(其中显示了堆状态、行数和列数以及其他非必要信息)。
我被迫在一个小屏幕上工作,所以我已经安装了全屏插件并默认隐藏了常规工具栏,但更多的像素肯定有助于缓解 4:3 19" 的痛苦。
回答by rdok
I found another solution in my research of using the eclipse dark color theme: http://i.stack.imgur.com/3heiL.png
我在使用 eclipse 深色主题的研究中找到了另一个解决方案:http: //i.stack.imgur.com/3heiL.png
Solution requires to edit css of eclipse. Source: https://stackoverflow.com/a/17027501/2790481
解决方案需要编辑eclipse的css。来源: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.cssand add the above CSS code at the end of moonrise-ui-standalone.css.
如果你已经安装了 eclipse-color-theme 插件,你可以直接复制粘贴到 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; }
- 如果您使用自定义主题,则必须编辑该插件的 CSS。例如,我必须编辑这个文件eclipse\plugins\com.github.eclipseuitheme.themes.moonrise-ui_0.8.6.jar\themes\css\moonrise-ui-standalone.css并在Moonrise 的末尾添加上面的 CSS 代码- ui-standalone.css。
回答by dakara
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.
您可以通过使用快速访问来做到这一点。键入“切换可见性”应该会找到将隐藏窗口底部状态栏的命令。
回答by psuzzi
With the coming release of Eclipse, you'll be able to hide the status bar via menu.
随着即将发布的 Eclipse,您将能够通过菜单隐藏状态栏。