Created
April 1, 2015 22:03
-
-
Save deris/37a50678fb843aa6ae27 to your computer and use it in GitHub Desktop.
固定幅自動改行
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 120幅で改行する | |
set textwidth=120 | |
" 自動で改行する | |
set formatoptions+=t | |
" 挿入時、'textwidth'より短くても改行する | |
set formatoptions-=l | |
" 'textwidth'より短ければ、挿入時以降の空白でなくても改行する | |
set formatoptions-=v | |
" gqコマンドを使えば、既存のコードも自動で改行する |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment