문제

Is it possible to set text wrapping in PyDev?

For Python such feature is especially important because you cant freely use newline characters.

도움이 되었습니까?

해결책 2

Python syntax depends on indentation. So automatic text wrapping spoils the syntax. But you can tell Python to continue a statement on the next line. See the style guide under Maximum Line Length : : http://www.python.org/dev/peps/pep-0008/

다른 팁

In PyDev, the Source/Wrap paragraph menu (Ctrl+2, w) wraps the current line automatically. You should of course check if the output is what you expected.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top