repo.or.cz
/
MacVim.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Changed DiffText and Constant highlight groups
[MacVim.git]
/
runtime
/
indent
/
c.vim
blob
e224382f63759a573830e0d68bf27cf71eec4582
1
" Vim indent file
2
" Language: C
3
" Maintainer: Bram Moolenaar <Bram@vim.org>
4
" Last Change: 2005 Mar 27
5
6
" Only load this indent file when no other was loaded.
7
if exists("b:did_indent")
8
finish
9
endif
10
let b:did_indent = 1
11
12
" C indenting is built-in, thus this is very simple
13
setlocal cindent
14
15
let b:undo_indent = "setl cin<"