如何缩短Intellij控制台中的第一行?
我怎样才能缩短它以像第一张图片一样?
我正在 YouTube 上观看 Java 教程,它们的第一行(“C:\programs Files\Java\jdk\whatever”...)总是那么短而漂亮,最后有 3 个可爱的点,但我的又长又烦人。
I want my first line at the top of the console to look like this:
, but mine looks like this, and it's long:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以定义应折叠的行:
您还可以在中定义特殊关键字/短语此菜单中包含短语的行将在末尾用省略号 (...) 折叠。
You can define the lines which should be folded:
You can also define special keywords/phrases in this menu, where lines, which contains the phrase will be folded with ellipsis (...) at the end.
请参阅 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.