IntelliJ IDEA的输出窗口切割输出

有没有办法使IDEA保持输出窗口中的一切? 看起来像显示的行数有限制。 我无法在设置中find它。

无法获得更多的选票来解决问题,所以我必须自己回答。

IDEA_HOME \ BIN \ idea.properties

#----------------------------------------------------------------------- # This option controls console cyclic buffer: keeps the console output size not higher than the specified buffer size (Kb). Older lines are deleted. # In order to disable cycle buffer use idea.cycle.buffer.size=disabled idea.cycle.buffer.size=1024 

你也可以从IntelliJ设置改变。

覆盖控制台循环缓冲区大小将覆盖IDEA_HOME\bin\idea.properties指定的大小

设置窗口的屏幕截图

对于Windows更改terminalshellpath:

文件 – >设置 – >工具 – >terminal

从cmd.exe到:

cmd.exe "/K mode con:cols=**500** lines=9999&cmd.exe"

如果问题是截断每行80个字符,请使用下面的解决scheme

 cmd.exe /K "mode con:cols=500 lines=9999&cmd.exe"