X-Git-Url: https://git.sthu.org/?p=vimconf.git;a=blobdiff_plain;f=syntax%2Feasychair2.vim;fp=syntax%2Feasychair2.vim;h=0000000000000000000000000000000000000000;hp=280c5b9df4f3e5c6bf92e32ca19ba5c4cea3b111;hb=8ced9450c8019df93f03a39f9f1d0ca39df917f1;hpb=73bbb991a2691770dbed8586708e861d44662583 diff --git a/syntax/easychair2.vim b/syntax/easychair2.vim deleted file mode 100644 index 280c5b9..0000000 --- a/syntax/easychair2.vim +++ /dev/null @@ -1,29 +0,0 @@ -" Vim syntax file -" Language: Easychair conference system review form -" Maintainer: Stefan Huber -" -" -" Changelog: -" 2010-12-12: Initial version -" 2024-01-08: Update to new syntax - -" Quit when a syntax file was already loaded -if version < 600 - syntax clear -elseif exists("b:current_syntax") - finish -endif - -runtime! syntax/tex.vim - -unlet! b:current_syntax - -syn region ec2Section start="==\*==" end="$" -syn region ec2Subsection start="==+==" end="$" -syn region ec2Comment start="==-==" end="$" - -hi def link ec2Comment Comment -hi def link ec2Section Directory -hi def link ec2Subsection Directory - -let b:current_syntax = "easychair2"