PyCharm 中可以增加终端中的最大线宽吗?

问题描述 投票:0回答:2

在 PyCharm 中,终端的最大宽度为 265 个字符。

要查看此内容,请在 PyCharm 终端的 python 提示符下运行以下命令:

print('x' * 264)  # displays a long row of xxxxxxx on one line
print('x' * 265)  # wraps the newline character onto a new line
print('x' * 266)  # wraps one of the x's onto a new line

PyCharm 中是否有设置可以增加线宽限制?

我想打印出比这更长的行,以与不同程序的输出进行比较。

我意识到我可以从 Python 将输出写入文件,但为了快速调试,打印到终端通常更方便。

python terminal pycharm
2个回答
2
投票

在 PyCharm 中,终端的最大宽度为 265 个字符。

PyCharm 的作用是使用终端仿真器 调用系统上安装的终端/shell 之一。因此,这些属性是您配置 IDE 使用的任何终端的本机属性。可以在

File
>
Settings
>
Tools
>
Terminal
>
Application Settings
>
Shell path
》中选择终端,请参见屏幕截图示例 Windows
cmd.exe 
)。

enter image description here

设置列长度不是 PyCharm 特有的,而是您所使用的终端/shell/操作系统本身的设置。因此,根据您的系统设置此属性会有所不同,在使用 Windows

cmd.exe
的示例中,可以使用 Microsoft mode 进行设置,如 this post 中所述。屏幕截图显示了问题中的运行示例。

enter image description here


0
投票

就我而言,我忘记关闭 PyCharm 的软包装功能:

sidebar with the soft-wrap feature illustrated

只需禁用此功能即可将其转换为宽滚动显示,而不是我的环绕显示。

© www.soinside.com 2019 - 2024. All rights reserved.