diff options
author | Dan Gohman <gohman@apple.com> | 2009-01-21 21:30:25 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-01-21 21:30:25 +0000 |
commit | be8c7195e40fab4eaa043d7f280d1ff66c32bb97 (patch) | |
tree | ff25776a2e45714ca52cf3034b6e717d468e3fa8 /utils/vim | |
parent | 056d65ba0b18770468bf2b0b7c048bef99704e64 (diff) | |
download | external_llvm-be8c7195e40fab4eaa043d7f280d1ff66c32bb97.zip external_llvm-be8c7195e40fab4eaa043d7f280d1ff66c32bb97.tar.gz external_llvm-be8c7195e40fab4eaa043d7f280d1ff66c32bb97.tar.bz2 |
Only set cindent for C and C++ source files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62717 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/vim')
-rw-r--r-- | utils/vim/vimrc | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/utils/vim/vimrc b/utils/vim/vimrc index 4303839..1b2de0f 100644 --- a/utils/vim/vimrc +++ b/utils/vim/vimrc @@ -22,9 +22,16 @@ set expandtab highlight WhitespaceEOL ctermbg=DarkYellow guibg=DarkYellow match WhitespaceEOL /\s\+$/ +" Enable filetype detection +filetype on + " Optional " C/C++ programming helpers -set cindent +augroup csrc + au! + autocmd FileType * set nocindent smartindent + autocmd FileType c,cpp set cindent +augroup END " Set a few indentation parameters. See the VIM help for cinoptions-values for " details. These aren't absolute rules; they're just an approximation of " common style in LLVM source. @@ -35,9 +42,6 @@ set smarttab " Highlight syntax in programming languages syntax on -" Enable filetype detection -filetype on - " LLVM Makefiles can have names such as Makefile.rules or TEST.nightly.Makefile, " so it's important to categorize them as such. augroup filetype |