如何更改 Atom 的底部 window 高度?

How do I change Atom's bottom window height?

我最近开始使用 Atom 并尝试让它尽可能好用。 但是我无法弄清楚如何更改底部的高度 window (它的名称已经有所帮助)。 我的目标是让我的控制台等尽可能简约。 例如。: Atom's bottom window shown here with an output example from Atom-Runner

  1. 如何只显示 atom-runner 的输出,而不显示其顶部 window 的灰色其余部分?
  2. 如何删除不必要的标签,例如 "Atom Runner: data.py"?

我发现您可以使用如下命令在 styles.less 文件中进行相当多的更改:

atom-workspace {
  height: calc(...);
}

但这并没有真正帮助我。

However I couldn't figure out how to change the height of the bottom window (a name for it would already help).

atom-runnerbottom panel 中显示其结果。 Atom 中有几种不同类型的容器 window:

  1. 窗格是编辑器中间的内容。窗格可以容纳任意数量的项目,这些项目通常与特定文件相关联(参见 TextEditors
  2. 停靠栏是窗格外的可扩展区域(tree-viewgithub 包使用停靠栏)。他们可以有多个项目,并会为他们创建标签。
  3. 面板是 Atom 边缘的空间 window。如果不禁用整个包,则无法隐藏它们。

How do I only show the atom-runner's output and not the grey rest of the window on top of it?

"grey rest of the window" 是底部停靠栏。您可以通过单击带有向下箭头的半圆来隐藏它。

How can I get rid of unnecessary labels like "Atom Runner: data.py"?

我不同意这是不必要的,您可能有一天会发现您需要知道您的文件是什么 运行。但是,如果您想这样做,可以将以下内容添加到 styles.less:

.atom-runner h1 {
  display: none;
}