vim에서 약간의 파이썬 코드를 편집한다고 가정 해 봅시다.
myobj.myfunc("Some string parameter that goes on and on and on and on and sometimes doesn't"
"split very"
"neatly over different lines so that"
"it is formatted attractively")
나는 이것을 다시 포맷하여 textwidth
내가 설정 한대로 리플 로우하는 것을 선호한다 .
myobj.myfunc("Some string parameter that goes on and on and "
"on and on and sometimes doesn't split very "
"neatly over different lines so that it is "
"formatted attractively")
이 작업을 수행하는 쉬운 방법이 있습니까? 이것이 일반적인 텍스트 단락 gqip이거나 이와 유사한 경우 유용하지만 문자열을 지정하는 데 사용되는 따옴표는 처리하지 않습니다.
참고 : 파이썬에 대해 특별히 묻고 있지만 이상적 으로이 대답은 문자열 연속을 허용하는 많은 유형의 프로그래밍 언어와 관련이 있습니다.
"""multi-line string"""
?