GVim for Windows のバージョン 7.4 をインストールしました。次の内容の gvimrc ファイルも作成しました。
set tabstop=2 " Set the tabstop to 2 spaces
set shiftwidth=2 " Shiftwidth should match tabstop
set expandtab " Convert tabs to <tabstop> number of spaces
set smartindent " Let vim help you with your code indention
highlight Comment guifg=#409040
highlight SpecialComment guifg=#409040
highlight String guifg=Blue
highlight ColorColumn guibg=LightGray
set colorcolumn=81
set tw=0
いくつかの行が考慮されます。例えば:set tabstop=2
他の行は考慮されません。例えば: 、highlight Comment guifg=#409040
後で gvimrc ファイルを実行すると:so $MYGVIMRC
、すべての行が考慮されます。
では、これらの欠陥のある回線の何が問題になっているのでしょうか? 彼らは何か他のものによって上書きされていますか?
注: この gvimrc ファイルは、Ubuntu と Mac で正常に動作します。