末尾のホワイトスペースを赤字で警告してくれるVimのプラグイン
bad-whitespace
で特定の拡張子に対し警告を無効にしたい場合の対処方法
例:拡張子emlの場合
autocmd FileType mail exe ':HideBadWhitespace'
でOK。
FileTypeの調べ方
適当にvim hoge.eml
でVimを開き、set filetype
とやるとfiletype=mail
などと出ます。
末尾のホワイトスペースを赤字で警告してくれるVimのプラグイン
bad-whitespace
で特定の拡張子に対し警告を無効にしたい場合の対処方法
例:拡張子emlの場合
autocmd FileType mail exe ':HideBadWhitespace'
でOK。
適当にvim hoge.eml
でVimを開き、set filetype
とやるとfiletype=mail
などと出ます。