summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-01-21 21:30:25 +0000
committerDan Gohman <gohman@apple.com>2009-01-21 21:30:25 +0000
commit455be5a0a0d1d83bff4e801305e50ce334e4f7c7 (patch)
treedc8b43741fb9b16c6826ac0472cc92519d8b4fd6
parent6cf1f8fd5bd92dfdf4bc18370dd39e459863e0bd (diff)
downloadbcm5719-llvm-455be5a0a0d1d83bff4e801305e50ce334e4f7c7.tar.gz
bcm5719-llvm-455be5a0a0d1d83bff4e801305e50ce334e4f7c7.zip
Only set cindent for C and C++ source files.
llvm-svn: 62717
-rw-r--r--llvm/utils/vim/vimrc12
1 files changed, 8 insertions, 4 deletions
diff --git a/llvm/utils/vim/vimrc b/llvm/utils/vim/vimrc
index 43038399ea8..1b2de0f7f2c 100644
--- a/llvm/utils/vim/vimrc
+++ b/llvm/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
OpenPOWER on IntegriCloud