blob: 969f4db733188f339716bba01b1cba6fe6e6de01 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | " Vim indent file
" Language:	vala
" Maintainer:	Sebastian Reichel <sre@ring0.de>
" Last Change:	2009 Nov 18
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
   finish
endif
let b:did_indent = 1
" use C indenting
setlocal cindent
let b:undo_indent = "setl cin<"
 |