[llvm-commits] [llvm] r62717 - /llvm/trunk/utils/vim/vimrc

Dan Gohman gohman at apple.com
Wed Jan 21 13:30:25 PST 2009


Author: djg
Date: Wed Jan 21 15:30:25 2009
New Revision: 62717

URL: http://llvm.org/viewvc/llvm-project?rev=62717&view=rev
Log:
Only set cindent for C and C++ source files.

Modified:
    llvm/trunk/utils/vim/vimrc

Modified: llvm/trunk/utils/vim/vimrc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/vim/vimrc?rev=62717&r1=62716&r2=62717&view=diff

==============================================================================
--- llvm/trunk/utils/vim/vimrc (original)
+++ llvm/trunk/utils/vim/vimrc Wed Jan 21 15:30:25 2009
@@ -22,9 +22,16 @@
 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 @@
 " 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





More information about the llvm-commits mailing list