我有
vim 7.3,默认情况下使用Ubuntu 11.04提供的设置.我的.vimrc如下所示:
原文链接:https://www.f2er.com/bash/384122.htmlset nocompatible set autoindent set tabstop=4 set softtabstop=4 set shiftwidth=4 set expandtab filetype plugin indent on let g:omni_sql_no_default_maps = 1 " Stops Omni from grabbing left/right keys " Syntax,colorscheme and status line directives omitted.
如何针对不同的文件类型(例如PHP,phtml,rb)有选择地禁用此缩进?
到目前为止,我已经尝试了autocmd FileType PHP filetype插件缩进和一些变体,但我还没有太多运气.