" Vim syntax file " Language: WML " Maintainer: Gerfried Fuchs " URL: http://alfie.ist.org/vim/syntax/wml.vim " Last Change: 26 Feb 2000 " Original Maintainer: Craig Small " A lot of the web stuff looks like HTML soo we load that first so $VIMRUNTIME/syntax/html.vim if !exists("main_syntax") let main_syntax = 'wml' endif " Redfine htmlTag syn clear htmlTag syn region htmlTag start=+<[^/<]+ end=+>+ contains=htmlTagN,htmlString,htmlArg,htmlValue,htmlTagError,htmlEvent,htmlCssDefinition " " Add in extra Arguments used by wml syn keyword htmlTagName contained gfont imgbg imgdot lowsrc syn keyword htmlTagName contained navbar:define navbar:header syn keyword htmlTagName contained navbar:footer navbar:prolog syn keyword htmlTagName contained navbar:epilog navbar:button syn keyword htmlTagName contained navbar:filter navbar:debug syn keyword htmlTagName contained navbar:render syn keyword htmlTagName contained preload rollover syn keyword htmlTagName contained space hspace vspace over syn keyword htmlTagName contained ps ds pi ein big sc spaced headline syn keyword htmlTagName contained ue subheadline zwue verbcode syn keyword htmlTagName contained isolatin pod sdf text url verbatim syn keyword htmlTagName contained xtable syn keyword htmlTagName contained csmap fsview import box syn keyword htmlTagName contained case:upper case:lower syn keyword htmlTagName contained grid cell info lang: logo page syn keyword htmlTagName contained set-var restore syn keyword htmlTagName contained array:push array:show set-var ifdef syn keyword htmlTagName contained say m4 symbol dump enter divert syn keyword htmlTagName contained toc " " The wml arguments syn keyword htmlArg contained adjust background base bdcolor bdspace bdwidth complete copyright created crop direction description domainname eperlfilter file hint imgbase imgstar interchar interline keephr keepindex keywords layout spacing padding nonetscape noscale notag notypo onload oversrc pos select slices style subselected txtcol_select txtcol_normal txtonly via " " Lines starting with an # are usually comments syn match wmlComment "^\s*#.*" " The different exceptions to comments syn match wmlSharpBang "^#!.*" syn match wmlUsed contained "\s\s*[A-Za-z:]*" syn match wmlUse "^\s*#\s*use\s*" contains=wmlUsed syn match wmlInclude "^\s*#\s*include.*" syn region wmlBody contained start=+<<+ end=+>>+ syn match wmlLocationed contained "[A-Za-z]*" syn region wmlLocation start=+<<+ end=+>>+ contains=wmlLocationed syn match wmlDivert "\.\.[a-zA-Z_]\+>>" syn match wmlDivertEnd "<<\.\." syn match wmlDefineName contained "\s\+[A-Za-z-]\+" syn region htmlTagName start="\<\(define-tag\|define-region\)" end="\>" contains=wmlDefineName " The perl include stuff if main_syntax != 'perl' " Perl script syn include @wmlPerlScript $VIMRUNTIME/syntax/perl.vim syn region perlScript start=++ keepend end=++ contains=@wmlPerlScript,wmlPerlTag syn region perlScript start=+<:+ keepend end=+:>+ contains=@wmlPerlScript,wmlPerlTag syn match wmlPerlTag contained "" contains=wmlPerlTagN "syn match wmlPerlTag contained "" contains=wmlPerlTagN syn keyword wmlPerlTagN contained perl hi link wmlPerlTag htmlTag hi link wmlPerlTagN htmlStatement endif if main_syntax == "html" syn sync match wmlHighlight groupthere NONE "" syn sync match wmlHighlightSkip "^.*['\"].*$" syn sync minlines=10 endif if !exists("did_wml_syntax_inits") let did_wml_syntax_hints = 1 hi link wmlUse Include hi link wmlUsed String hi link wmlBody Special hi link wmlDiverted Label hi link wmlDivert Delimiter hi link wmlDivertEnd Delimiter hi link wmlLocationed Label hi link wmlLocation Delimiter hi link wmlDefineName String hi link wmlComment Comment hi link wmlInclude Include hi link wmlSharpBang PreProc endif let b:current_syntax = "wml"