有没有办法在进行 PyDev 组织导入时不换行?
PyDev 的“组织导入”将以 80 个字符宽度换行,如下所示: 从 xyz 导入 A、B、C、\ D、E、F
有没有办法禁用该包装?或者延长宽度? 我尝试在 Eclipse 设置中增加线宽,但似乎不起作用。我认为这只是 Java 编辑器特有的,而不是 PyDev 特有的。
PyDev's "Organize Import" will wrap the line at 80 char width like below:
from xyz import A, B, C, \
D, E, F
Is there a way to disable that wrap? or to extend the width?
I tried increasing the line width in eclipse settings, but it didn't seem to work. I think that's only specific in Java editors and not PyDev.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,有可能...窗口 > 中的边距可能会增加偏好>一般>编辑>文本编辑器>打印边距栏。
是否中断多行的选项可以在窗口 > 中更改。偏好> pydev >编辑>代码风格>进口> “允许多行导入...”
Yes, it's possible... the margin may be raised in window > preferences > general > editors > text editors > print margin column.
And the option to break in multilines or not may be changed in window > preferences > pydev > editor > code style > imports > 'allow multiline imports...'
或者,
如果该行太宽而无法显示,则它太宽而不易阅读。请参阅为什么Python PEP-8 应该指定最大行长度为 79 个字符吗?
Or
If the line is to wide to be shown it is too wide to be read easily. See Why should Python PEP-8 specify a maximum line length of 79 characters?