我刚刚为 Windows 安装了 GVim 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 上运行良好。