OTWO-1213 Works around lost encoding in Ruby/C binding layer
[ohcount] / test / src_dir / foo.vim
1 " Vim syntax file
2 " Language:     Test file for ohcount
3 " Author:       Ciaran McCreesh
4 "
5 " This is a test vim syntax file for ohcount.
6 "
7
8 if &compatible || v:version < 700
9     finish
10 endif
11
12 if exists("b:current_syntax")
13   finish
14 endif
15
16 " This is a comment. There are many like it, but this one is mine.
17 syn region GiantSpaceMonkey start=/^\s*#/ end=/$/
18 hi def link GiantSpaceMonkey Comment
19
20 let b:current_syntax = "ohcount-test"
21