" MagicPoint (mgp) syntax file " Language: MagicPoint (mgp) " Maintainer: Patrick Reynolds (reynolds .at. cs duke edu) " Last change: 1999 Dec 7 " TODO: embed and filter should probably be regions, not keywords syn clear syn keyword mgpCommand contained size fore back bgrad syn keyword mgpCommand contained left leftfill center right syn keyword mgpCommand contained shrink lcutin rcutin cont syn keyword mgpCommand contained nodefault include syn keyword mgpCommand contained xfont vfont tfont tmfont font0 syn keyword mgpCommand contained bar image newimage prefix syn keyword mgpCommand contained icon bimage default tab page syn keyword mgpCommand contained vgap hgap pause mark again syn keyword mgpCommand contained system filter vfcap tfdir syn keyword mgpCommand contained deffont font embed endembed syn keyword mgpCommand contained noop pcache " normal text -- lowest priority -- these come first syn match mgpText0 "^[^\t].*" syn match mgpText1 "^\t[^\t].*" syn match mgpText2 "^\t\t[^\t].*" syn match mgpText3 "^\t\t\t[^\t].*" syn match mgpCmdLine "^%.*" contains=mgpCommand,mgpString,mgpColor,mgpIcon,mgpNumber,mgpDimensions,mgpDelimiter syn region mgpString contained start=+"+ end=+"+ syn match mgpColor contained "\"#\x\x\x\x\x\x\"" syn match mgpIcon contained "arc\|box\|delta[1234]\|dia" syn match mgpNumber contained "\d\+" syn match mgpDimensions contained "\d\+x\d\+" syn match mgpDelimiter contained "^%" " comments -- highest priority (overrides anything) -- these come last syn match mgpComment "^%%.*" syn match mgpComment "^#.*" hi link mgpText0 Normal hi link mgpText1 Normal hi link mgpText2 Normal hi link mgpText3 Normal hi link mgpCommand Statement hi link mgpString String hi link mgpColor Constant hi link mgpIcon Constant hi link mgpNumber Number hi link mgpDimensions Constant hi link mgpDelimiter Delimiter hi link mgpComment Comment