나는 vim에서 전체 단어를 감싸는 방법을 설명하는 이 게시물 을 보고있었습니다 . 허용 된 해결책은 다음과 같습니다.
:set formatoptions=l
:set lbr
이 텍스트를 사용합니다 (탭은 \ t로 표시됨).
*Inside of window *Outside of window
|---------------------------------------|
|\t\tthis is a like of text that will wr|ap here
|\t\tcan you see the wrap |
| |
|---------------------------------------|
이렇게하면 다음과 같은 동작이 수행됩니다 (탭은 \ t로 표시됨).
*Inside of window *Outside of window
|---------------------------------------|
|\t\tthis is a like of text that will |
|wrap here |
|\t\tcan you see the wrap |
| |
|---------------------------------------|
그러나이 기능을 재정의하고 싶습니다. 줄 바꿈 된 줄 앞에 위의 줄에 1을 더한 것과 동일한 수의 탭이 있기를 바랍니다. 즉 :
*Inside of window *Outside of window
|---------------------------------------|
|\t\tthis is a like of text that will |
|\t\t\twrap here |
|\t\tcan you see the wrap |
| |
|---------------------------------------|
어떤 아이디어?