syntax: Add easychair review syntax
[vimconf.git] / syntax / easychair.vim
diff --git a/syntax/easychair.vim b/syntax/easychair.vim
new file mode 100644 (file)
index 0000000..e9e9f73
--- /dev/null
@@ -0,0 +1,27 @@
+" Vim syntax file
+" Language:         Easychair conference system review form
+" Maintainer:       Stefan Huber
+"
+"
+" Changelog:
+"   2010-12-12: Initial version
+
+
+
+" Quit when a syntax file was already loaded
+if version < 600
+  syntax clear
+elseif exists("b:current_syntax")
+  finish
+endif
+
+
+
+syn region ascComment start="---" end="$"
+syn region ascSystem start="\*\*\*" end="$"
+
+
+hi def link ascComment Comment
+hi def link ascSystem Identifier
+
+