Add support for vim-devicons
[vimconf.git] / syntax / easychair.vim
1 " Vim syntax file
2 " Language: Easychair conference system review form
3 " Maintainer: Stefan Huber
4 "
5 "
6 " Changelog:
7 " 2010-12-12: Initial version
8
9
10
11 " Quit when a syntax file was already loaded
12 if version < 600
13 syntax clear
14 elseif exists("b:current_syntax")
15 finish
16 endif
17
18
19
20 syn region ascComment start="---" end="$"
21 syn region ascSystem start="\*\*\*" end="$"
22
23
24 hi def link ascComment Comment
25 hi def link ascSystem Identifier
26
27