如何缩短Intellij控制台中的第一行?

发布于 2025-01-18 16:58:34 字数 390 浏览 0 评论 0原文

我希望控制台顶部的第一行如下所示: 输入图片描述在这里

,但我的看起来像这样,而且很长:

我怎样才能缩短它以像第一张图片一样?

我正在 YouTube 上观看 Java 教程,它们的第一行(“C:\programs Files\Java\jdk\whatever”...)总是那么短而漂亮,最后有 3 个可爱的点,但我的又长又烦人。

I want my first line at the top of the console to look like this:
enter image description here

, but mine looks like this, and it's long:
enter image description here

How can I shorten it to like the first picture?

I'm watching Java tutorials on youtube and their first lines ("C:\programs Files\Java\jdk\whatever"...) are always so short and pretty with 3 cute dots in the end, but mine is long and annoying.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮光之海 2025-01-25 16:58:35

您可以定义应折叠的行:

  1. 在控制台中右键单击该行
  2. 选择“像这样折叠行
  3. 单击确定

您还可以在中定义特殊关键字/短语此菜单中包含短语的行将在末尾用省略号 (...) 折叠。

You can define the lines which should be folded:

  1. Right click on that line in the console
  2. Choose "Fold Lines Like This"
  3. Click OK

You can also define special keywords/phrases in this menu, where lines, which contains the phrase will be folded with ellipsis (...) at the end.

云朵有点甜 2025-01-25 16:58:35

请参阅 consoleviewimpl.java Intellij Idea源代码

此行(执行命令)中的文件将自动隐藏,以防字符串长度超过1000个符号。

因此,一旦将某些内容添加到执行命令(例如,添加库),执行命令会自动折叠。

See the ConsoleViewImpl.java file in the source code of IntelliJ IDEA

This line (execution command) will be automatically hidden in case the string length is more than 1000 symbols.

So, once you add something to the execution command (for example by adding libraries), the execution command is folded automatically.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文