Vim,{<enter> </enter>后的8个空格

时间:2011-04-11 23:25:33

标签: vim

我需要在我正在工作的项目中使用四个空格作为缩进。 那是我的.vimrc:

"Autouzupelnianie nawiasow
"inoremap { {<CR>}<C-O>O
inoremap { {}<LEFT>
inoremap [ []<LEFT>
inoremap ( ()<LEFT>

syntax on

set autoindent
set number "pokazywanie numerow lini
set modifiable
set write
filetype indent on "wlaczenie rozpoznawania wciec                                                                                                                
set showmatch "nawiasy                                                                                                                                           

"Backup                                                                                                                                                          
set backup                                                                                                                                                       
set backupdir=/home/mat/Backup/vim/                                                                                                                              

let g:html_use_css="1" "htmle uzywaja css                                                                                                                        

"Wrap                                                                                                                                                            
set linebreak                                                                                                                                                    
set wrap                                                                                                                                                         
set nolist                                                                                                                                                       

"Tabulacja                                                                                                                                                       
"                                                                                                                                                                
"set smartindent                                                                                                                                                 
set tabstop=4                                                                                                                                                    
set expandtab                                                                                                                                                    
set shiftwidth=4                                                                                                                                                 
set softtabstop=4                                                                                                                                                

"Plugin snippMate                                                                                                                                                
filetype plugin on   

但是当我点击{然后点击输入时我得到了:

{
        <8 spaces> SOMETHING

1 个答案:

答案 0 :(得分:3)

根据文件类型,文件类型插件可能会覆盖您的vimrc设置。签入$VIMRUNTIME/ftplugin/{filetype}.vim$VIMRUNTIME/after/ftplugin/{filetype}.vim。另外还有$VIMRUNTIME/indent/{filetype}.vimafter版本。