Start anew
[git/jnareb-git.git] / share / vim / vim58 / syntax / postscr.vim
blob1daf06b5d07ffe1e67b6008397d83a8324ff51d7
1 " Vim syntax file
2 " Language:     PostScript - all Levels, selectable
3 " Maintainer:   Mike Williams <mrw@netcomuk.co.uk>
4 " Filenames:    *.ps,*.eps
5 " Last Change:  6th June 2000
6 " URL:          http://www.netcomuk.co.uk/~mrw/vim
8 " Options Flags:
9 " postscr_level                 - language level to use for highligting (1, 2, or 3)
10 " postscr_display               - include display PS operators
11 " postscr_ghostscript           - include GS extensions
12 " postscr_fonts                 - highlight standard font names (a lot for PS 3)
13 " postscr_encodings             - highlight encoding names (there are a lot)
14 " postscr_andornot_binary       - highlight and, or, and not as binary operators (not logical)
17 " For version 5.x: Clear all syntax items
18 " For version 6.x: Quit when a syntax file was already loaded
19 if version < 600
20   syntax clear
21 elseif exists("b:current_syntax")
22   finish
23 endif
25 " PostScript is case sensitive
26 syn case match
28 " Keyword characters - all 7-bit ASCII bar PS delimiters and ws
29 if version < 600
30   set iskeyword=33-127,^(,^),^<,^>,^[,^],^{,^},^/,^%
31 else
32   setlocal iskeyword=33-127,^(,^),^<,^>,^[,^],^{,^},^/,^%
33 endif
35 " Yer trusty old TODO highlghter!
36 syn keyword postscrTodo contained  TODO
38 " Comment
39 syn match postscrComment        "%.*$" contains=postscrTodo
40 " DSC comment start line (NB: defines DSC level, not PS level!)
41 syn match  postscrDSCComment    "^%!PS-Adobe-\d\+\.\d\+\s*.*$"
42 " DSC comment line (no check on possible comments - another language!)
43 syn match  postscrDSCComment    "^%%\u\+.*$" contains=@postscrString,@postscrNumber
44 " DSC continuation line (no check that previous line is DSC comment)
45 syn match  postscrDSCComment    "^%%+ *.*$" contains=@postscrString,@postscrNumber
47 " Names
48 syn match postscrName           "\k\+"
50 " Identifiers
51 syn match postscrIdentifierError "/\{1,2}[[:space:]\[\]{}]"me=e-1
52 syn match postscrIdentifier     "/\{1,2}\k\+" contains=postscrConstant,postscrBoolean,postscrCustConstant
54 " Numbers
55 syn case ignore
56 " In file hex data - usually complete lines
57 syn match postscrHex            "^[[:xdigit:]][[:xdigit:][:space:]]*$"
58 syn match postscrHex            "\<\x\{2,}\>"
59 " Integers
60 syn match postscrInteger        "\<[+-]\=\d\+\>"
61 " Radix
62 syn match postscrRadix          "\d\+#\x\+\>"
63 " Reals - upper and lower case e is allowed
64 syn match postscrFloat          "[+-]\=\d\+\.\>"
65 syn match postscrFloat          "[+-]\=\d\+\.\d*\(e[+-]\=\d\+\)\=\>"
66 syn match postscrFloat          "[+-]\=\.\d\+\(e[+-]\=\d\+\)\=\>"
67 syn match postscrFloat          "[+-]\=\d\+e[+-]\=\d\+\>"
68 syn cluster postscrNumber       contains=postscrInteger,postscrRadix,postscrFloat
69 syn case match
71 " Escaped characters
72 syn match postscrSpecialChar    contained "\\[nrtbf\\()]"
73 syn match postscrSpecialCharError contained "\\[^nrtbf\\()]"he=e-1
74 " Escaped octal characters
75 syn match postscrSpecialChar    contained "\\\o\{1,3}"
77 " Strings
78 " ASCII strings
79 syn region postscrASCIIString   start=+(+ end=+)+ skip=+([^)]*)+ contains=postscrSpecialChar,postscrSpecialCharError
80 " Hex strings
81 syn match postscrHexCharError   contained "[^<>[:xdigit:][:space:]]"
82 syn region postscrHexString     start=+<\($\|[^<]\)+ end=+>+ contains=postscrHexCharError
83 syn match postscrHexString      "<>"
84 " ASCII85 strings
85 syn match postscrASCII85CharError contained "[^<>\~!-uz[:space:]]"
86 syn region postscrASCII85String start=+<\~+ end=+\~>+ contains=postscrASCII85CharError
87 syn cluster postscrString       contains=postscrASCIIString,postscrHexString,postscrASCII85String
90 " Set default highlighting to level 2 - most common at the moment
91 if !exists("postscr_level")
92   let postscr_level = 2
93 endif
96 " PS level 1 operators - common to all levels (well ...)
98 " Stack operators
99 syn keyword postscrOperator     pop exch dup copy index roll clear count mark cleartomark counttomark
101 " Math operators
102 syn keyword postscrMathOperator add div idiv mod mul sub abs neg ceiling floor round truncate sqrt atan cos
103 syn keyword postscrMathOperator sin exp ln log rand srand rrand
105 " Array operators
106 syn match postscrOperator       "[\[\]{}]"
107 syn keyword postscrOperator     array length get put getinterval putinterval astore aload copy
108 syn keyword postscrRepeat       forall
110 " Dictionary operators
111 syn keyword postscrOperator     dict maxlength begin end def load store known where currentdict
112 syn keyword postscrOperator     countdictstack dictstack cleardictstack internaldict
113 syn keyword postscrConstant     $error systemdict userdict statusdict errordict
115 " String operators
116 syn keyword postscrOperator     string anchorsearch search token
118 " Logic operators
119 syn keyword postscrLogicalOperator eq ne ge gt le lt and not or
120 if exists("postscr_andornot_binaryop")
121   syn keyword postscrBinaryOperator and or not
122 else
123   syn keyword postscrLogicalOperator and not or
124 endif
125 syn keyword postscrBinaryOperator xor bitshift
126 syn keyword postscrBoolean      true false
128 " PS Type names
129 syn keyword postscrConstant     arraytype booleantype conditiontype dicttype filetype fonttype gstatetype
130 syn keyword postscrConstant     integertype locktype marktype nametype nulltype operatortype
131 syn keyword postscrConstant     packedarraytype realtype savetype stringtype
133 " Control operators
134 syn keyword postscrConditional  if ifelse
135 syn keyword postscrRepeat       for repeat loop
136 syn keyword postscrOperator     exec exit stop stopped countexecstack execstack quit
137 syn keyword postscrProcedure    start
139 " Object operators
140 syn keyword postscrOperator     type cvlit cvx xcheck executeonly noaccess readonly rcheck wcheck cvi cvn cvr
141 syn keyword postscrOperator     cvrs cvs
143 " File operators
144 syn keyword postscrOperator     file closefile read write readhexstring writehexstring readstring writestring
145 syn keyword postscrOperator     bytesavailable flush flushfile resetfile status run currentfile print
146 syn keyword postscrOperator     stack pstack readline deletefile setfileposition fileposition renamefile
147 syn keyword postscrRepeat       filenameforall
148 syn keyword postscrProcedure    = ==
150 " VM operators
151 syn keyword postscrOperator     save restore
153 " Misc operators
154 syn keyword postscrOperator     bind null usertime executive echo realtime
155 syn keyword postscrConstant     product revision serialnumber version
156 syn keyword postscrProcedure    prompt
158 " GState operators
159 syn keyword postscrOperator     gsave grestore grestoreall initgraphics setlinewidth setlinecap currentgray
160 syn keyword postscrOperator     currentlinejoin setmiterlimit currentmiterlimit setdash currentdash setgray
161 syn keyword postscrOperator     sethsbcolor currenthsbcolor setrgbcolor currentrgbcolor currentlinewidth
162 syn keyword postscrOperator     currentlinecap setlinejoin setcmykcolor currentcmykcolor
164 " Device gstate operators
165 syn keyword postscrOperator     setscreen currentscreen settransfer currenttransfer setflat currentflat
166 syn keyword postscrOperator     currentblackgeneration setblackgeneration setundercolorremoval
167 syn keyword postscrOperator     setcolorscreen currentcolorscreen setcolortransfer currentcolortransfer
168 syn keyword postscrOperator     currentundercolorremoval
170 " Matrix operators
171 syn keyword postscrOperator     matrix initmatrix identmatrix defaultmatrix currentmatrix setmatrix translate
172 syn keyword postscrOperator     concat concatmatrix transform dtransform itransform idtransform invertmatrix
173 syn keyword postscrOperator     scale rotate
175 " Path operators
176 syn keyword postscrOperator     newpath currentpoint moveto rmoveto lineto rlineto arc arcn arcto curveto
177 syn keyword postscrOperator     closepath flattenpath reversepath strokepath charpath clippath pathbbox
178 syn keyword postscrOperator     initclip clip eoclip rcurveto
179 syn keyword postscrRepeat       pathforall
181 " Painting operators
182 syn keyword postscrOperator     erasepage fill eofill stroke image imagemask colorimage
184 " Device operators
185 syn keyword postscrOperator     showpage copypage nulldevice
187 " Character operators
188 syn keyword postscrProcedure    findfont
189 syn keyword postscrConstant     FontDirectory ISOLatin1Encoding StandardEncoding
190 syn keyword postscrOperator     definefont scalefont makefont setfont currentfont show ashow
191 syn keyword postscrOperator     stringwidth kshow setcachedevice
192 syn keyword postscrOperator     setcharwidth widthshow awidthshow findencoding cshow rootfont setcachedevice2
194 " Interpreter operators
195 syn keyword postscrOperator     vmstatus cachestatus setcachelimit
197 " PS constants
198 syn keyword postscrConstant     contained Gray Red Green Blue All None DeviceGray DeviceRGB
200 " PS Filters
201 syn keyword postscrConstant     contained ASCIIHexDecode ASCIIHexEncode ASCII85Decode ASCII85Encode LZWDecode
202 syn keyword postscrConstant     contained RunLengthDecode RunLengthEncode SubFileDecode NullEncode
203 syn keyword postscrConstant     contained GIFDecode PNGDecode LZWEncode
205 " PS JPEG filter dictionary entries
206 syn keyword postscrConstant     contained DCTEncode DCTDecode Colors HSamples VSamples QuantTables QFactor
207 syn keyword postscrConstant     contained HuffTables ColorTransform
209 " PS CCITT filter dictionary entries
210 syn keyword postscrConstant     contained CCITTFaxEncode CCITTFaxDecode Uncompressed K EndOfLine
211 syn keyword postscrConstant     contained Columns Rows EndOfBlock Blacks1 DamagedRowsBeforeError
212 syn keyword postscrConstant     contained EncodedByteAlign
214 " PS Form dictionary entries
215 syn keyword postscrConstant     contained FormType XUID BBox Matrix PaintProc Implementation
217 " PS Errors
218 syn keyword postscrProcedure    handleerror
219 syn keyword postscrConstant     contained  configurationerror dictfull dictstackunderflow dictstackoverflow
220 syn keyword postscrConstant     contained  execstackoverflow interrupt invalidaccess
221 syn keyword postscrConstant     contained  invalidcontext invalidexit invalidfileaccess invalidfont
222 syn keyword postscrConstant     contained  invalidid invalidrestore ioerror limitcheck nocurrentpoint
223 syn keyword postscrConstant     contained  rangecheck stackoverflow stackunderflow syntaxerror timeout
224 syn keyword postscrConstant     contained  typecheck undefined undefinedfilename undefinedresource
225 syn keyword postscrConstant     contained  undefinedresult unmatchedmark unregistered VMerror
227 if exists("postscr_fonts")
228 " Font names
229   syn keyword postscrConstant   contained Symbol Times-Roman Times-Italic Times-Bold Times-BoldItalic
230   syn keyword postscrConstant   contained Helvetica Helvetica-Oblique Helvetica-Bold Helvetica-BoldOblique
231   syn keyword postscrConstant   contained Courier Courier-Oblique Courier-Bold Courier-BoldOblique
232 endif
235 if exists("postscr_display")
236 " Display PS only operators
237   syn keyword postscrOperator   currentcontext fork join detach lock monitor condition wait notify yield
238   syn keyword postscrOperator   viewclip eoviewclip rectviewclip initviewclip viewclippath deviceinfo
239   syn keyword postscrOperator   sethalftonephase currenthalftonephase wtranslation defineusername
240 endif
242 " PS Character encoding names
243 if exists("postscr_encodings")
244 " Common encoding names
245   syn keyword postscrConstant   contained .notdef
247 " Standard and ISO encoding names
248   syn keyword postscrConstant   contained space exclam quotedbl numbersign dollar percent ampersand quoteright
249   syn keyword postscrConstant   contained parenleft parenright asterisk plus comma hyphen period slash zero
250   syn keyword postscrConstant   contained one two three four five six seven eight nine colon semicolon less
251   syn keyword postscrConstant   contained equal greater question at
252   syn keyword postscrConstant   contained bracketleft backslash bracketright asciicircum underscore quoteleft
253   syn keyword postscrConstant   contained braceleft bar braceright asciitilde
254   syn keyword postscrConstant   contained exclamdown cent sterling fraction yen florin section currency
255   syn keyword postscrConstant   contained quotesingle quotedblleft guillemotleft guilsinglleft guilsinglright
256   syn keyword postscrConstant   contained fi fl endash dagger daggerdbl periodcentered paragraph bullet
257   syn keyword postscrConstant   contained quotesinglbase quotedblbase quotedblright guillemotright ellipsis
258   syn keyword postscrConstant   contained perthousand questiondown grave acute circumflex tilde macron breve
259   syn keyword postscrConstant   contained dotaccent dieresis ring cedilla hungarumlaut ogonek caron emdash
260   syn keyword postscrConstant   contained AE ordfeminine Lslash Oslash OE ordmasculine ae dotlessi lslash
261   syn keyword postscrConstant   contained oslash oe germandbls
262 " The following are valid names, but are used as short procedure names in generated PS!
263 " a b c d e f g h i j k l m n o p q r s t u v w x y z
264 " A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
266 " Symbol encoding names
267   syn keyword postscrConstant   contained universal existential suchthat asteriskmath minus
268   syn keyword postscrConstant   contained congruent Alpha Beta Chi Delta Epsilon Phi Gamma Eta Iota theta1
269   syn keyword postscrConstant   contained Kappa Lambda Mu Nu Omicron Pi Theta Rho Sigma Tau Upsilon sigma1
270   syn keyword postscrConstant   contained Omega Xi Psi Zeta therefore perpendicular
271   syn keyword postscrConstant   contained radicalex alpha beta chi delta epsilon phi gamma eta iota phi1
272   syn keyword postscrConstant   contained kappa lambda mu nu omicron pi theta rho sigma tau upsilon omega1
273   syn keyword postscrConstant   contained Upsilon1 minute lessequal infinity club diamond heart spade
274   syn keyword postscrConstant   contained arrowboth arrowleft arrowup arrowright arrowdown degree plusminus
275   syn keyword postscrConstant   contained second greaterequal multiply proportional partialdiff divide
276   syn keyword postscrConstant   contained notequal equivalence approxequal arrowvertex arrowhorizex
277   syn keyword postscrConstant   contained aleph Ifraktur Rfraktur weierstrass circlemultiply circleplus
278   syn keyword postscrConstant   contained emptyset intersection union propersuperset reflexsuperset notsubset
279   syn keyword postscrConstant   contained propersubset reflexsubset element notelement angle gradient
280   syn keyword postscrConstant   contained registerserif copyrightserif trademarkserif radical dotmath
281   syn keyword postscrConstant   contained logicalnot logicaland logicalor arrowdblboth arrowdblleft arrowdblup
282   syn keyword postscrConstant   contained arrowdblright arrowdbldown omega xi psi zeta similar carriagereturn
283   syn keyword postscrConstant   contained lozenge angleleft registersans copyrightsans trademarksans summation
284   syn keyword postscrConstant   contained parenlefttp parenleftex parenleftbt bracketlefttp bracketleftex
285   syn keyword postscrConstant   contained bracketleftbt bracelefttp braceleftmid braceleftbt braceex euro
286   syn keyword postscrConstant   contained angleright integral integraltp integralex integralbt parenrighttp
287   syn keyword postscrConstant   contained parenrightex parenrightbt bracketrighttp bracketrightex
288   syn keyword postscrConstant   contained bracketrightbt bracerighttp bracerightmid bracerightbt
290 " ISO Latin1 encoding names
291   syn keyword postscrConstant   contained brokenbar copyright registered twosuperior threesuperior
292   syn keyword postscrConstant   contained onesuperior onequarter onehalf threequarters
293   syn keyword postscrConstant   contained Agrave Aacute Acircumflex Atilde Adieresis Aring Ccedilla Egrave
294   syn keyword postscrConstant   contained Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis
295   syn keyword postscrConstant   contained Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Ugrave Uacute
296   syn keyword postscrConstant   contained Ucircumflex Udieresis Yacute Thorn
297   syn keyword postscrConstant   contained agrave aacute acircumflex atilde adieresis aring ccedilla egrave
298   syn keyword postscrConstant   contained eacute ecircumflex edieresis igrave iacute icircumflex idieresis
299   syn keyword postscrConstant   contained eth ntilde ograve oacute ocircumflex otilde odieresis ugrave uacute
300   syn keyword postscrConstant   contained ucircumflex udieresis yacute thorn ydieresis
301   syn keyword postscrConstant   contained zcaron exclamsmall Hungarumlautsmall dollaroldstyle dollarsuperior
302   syn keyword postscrConstant   contained ampersandsmall Acutesmall parenleftsuperior parenrightsuperior
303   syn keyword postscrConstant   contained twodotenleader onedotenleader zerooldstyle oneoldstyle twooldstyle
304   syn keyword postscrConstant   contained threeoldstyle fouroldstyle fiveoldstyle sixoldstyle sevenoldstyle
305   syn keyword postscrConstant   contained eightoldstyle nineoldstyle commasuperior
306   syn keyword postscrConstant   contained threequartersemdash periodsuperior questionsmall asuperior bsuperior
307   syn keyword postscrConstant   contained centsuperior dsuperior esuperior isuperior lsuperior msuperior
308   syn keyword postscrConstant   contained nsuperior osuperior rsuperior ssuperior tsuperior ff ffi ffl
309   syn keyword postscrConstant   contained parenleftinferior parenrightinferior Circumflexsmall hyphensuperior
310   syn keyword postscrConstant   contained Gravesmall Asmall Bsmall Csmall Dsmall Esmall Fsmall Gsmall Hsmall
311   syn keyword postscrConstant   contained Ismall Jsmall Ksmall Lsmall Msmall Nsmall Osmall Psmall Qsmall
312   syn keyword postscrConstant   contained Rsmall Ssmall Tsmall Usmall Vsmall Wsmall Xsmall Ysmall Zsmall
313   syn keyword postscrConstant   contained colonmonetary onefitted rupiah Tildesmall exclamdownsmall
314   syn keyword postscrConstant   contained centoldstyle Lslashsmall Scaronsmall Zcaronsmall Dieresissmall
315   syn keyword postscrConstant   contained Brevesmall Caronsmall Dotaccentsmall Macronsmall figuredash
316   syn keyword postscrConstant   contained hypheninferior Ogoneksmall Ringsmall Cedillasmall questiondownsmall
317   syn keyword postscrConstant   contained oneeighth threeeighths fiveeighths seveneighths onethird twothirds
318   syn keyword postscrConstant   contained zerosuperior foursuperior fivesuperior sixsuperior sevensuperior
319   syn keyword postscrConstant   contained eightsuperior ninesuperior zeroinferior oneinferior twoinferior
320   syn keyword postscrConstant   contained threeinferior fourinferior fiveinferior sixinferior seveninferior
321   syn keyword postscrConstant   contained eightinferior nineinferior centinferior dollarinferior periodinferior
322   syn keyword postscrConstant   contained commainferior Agravesmall Aacutesmall Acircumflexsmall
323   syn keyword postscrConstant   contained Atildesmall Adieresissmall Aringsmall AEsmall Ccedillasmall
324   syn keyword postscrConstant   contained Egravesmall Eacutesmall Ecircumflexsmall Edieresissmall Igravesmall
325   syn keyword postscrConstant   contained Iacutesmall Icircumflexsmall Idieresissmall Ethsmall Ntildesmall
326   syn keyword postscrConstant   contained Ogravesmall Oacutesmall Ocircumflexsmall Otildesmall Odieresissmall
327   syn keyword postscrConstant   contained OEsmall Oslashsmall Ugravesmall Uacutesmall Ucircumflexsmall
328   syn keyword postscrConstant   contained Udieresissmall Yacutesmall Thornsmall Ydieresissmall Black Bold Book
329   syn keyword postscrConstant   contained Light Medium Regular Roman Semibold
331 " Sundry standard and expert encoding names
332   syn keyword postscrConstant   contained trademark Scaron Ydieresis Zcaron scaron softhyphen overscore
333   syn keyword postscrConstant   contained graybox Sacute Tcaron Zacute sacute tcaron zacute Aogonek Scedilla
334   syn keyword postscrConstant   contained Zdotaccent aogonek scedilla Lcaron lcaron zdotaccent Racute Abreve
335   syn keyword postscrConstant   contained Lacute Cacute Ccaron Eogonek Ecaron Dcaron Dcroat Nacute Ncaron
336   syn keyword postscrConstant   contained Ohungarumlaut Rcaron Uring Uhungarumlaut Tcommaaccent racute abreve
337   syn keyword postscrConstant   contained lacute cacute ccaron eogonek ecaron dcaron dcroat nacute ncaron
338   syn keyword postscrConstant   contained ohungarumlaut rcaron uring uhungarumlaut tcommaaccent Gbreve
339   syn keyword postscrConstant   contained Idotaccent gbreve blank apple
340 endif
343 " By default level 3 includes all level 2 operators
344 if postscr_level == 2 || postscr_level == 3
345 " Dictionary operators
346   syn match postscrOperator     "\(<<\|>>\)"
347   syn keyword postscrOperator   undef
348   syn keyword postscrConstant   globaldict shareddict
350 " Device operators
351   syn keyword postscrOperator   setpagedevice currentpagedevice
353 " Path operators
354   syn keyword postscrOperator   rectclip setbbox uappend ucache upath ustrokepath arct
356 " Painting operators
357   syn keyword postscrOperator   rectfill rectstroke ufill ueofill ustroke
359 " Array operators
360   syn keyword postscrOperator   currentpacking setpacking packedarray
362 " Misc operators
363   syn keyword postscrOperator   languagelevel
365 " Insideness operators
366   syn keyword postscrOperator   infill ineofill instroke inufill inueofill inustroke
368 " GState operators
369   syn keyword postscrOperator   gstate setgstate currentgstate setcolor
370   syn keyword postscrOperator   setcolorspace currentcolorspace setstrokeadjust currentstrokeadjust
371   syn keyword postscrOperator   currentcolor
373 " Device gstate operators
374   syn keyword postscrOperator   sethalftone currenthalftone setoverprint currentoverprint
375   syn keyword postscrOperator   setcolorrendering currentcolorrendering
377 " Character operators
378   syn keyword postscrConstant   GlobalFontDirectory SharedFontDirectory
379   syn keyword postscrOperator   glyphshow selectfont
380   syn keyword postscrOperator   addglyph undefinefont xshow xyshow yshow
382 " Pattern operators
383   syn keyword postscrOperator   makepattern setpattern execform
385 " Resource operators
386   syn keyword postscrOperator   defineresource undefineresource findresource resourcestatus
387   syn keyword postscrRepeat     resourceforall
389 " File operators
390   syn keyword postscrOperator   filter printobject writeobject setobjectformat currentobjectformat
392 " VM operators
393   syn keyword postscrOperator   currentshared setshared defineuserobject execuserobject undefineuserobject
394   syn keyword postscrOperator   gcheck scheck startjob currentglobal setglobal
395   syn keyword postscrConstant   UserObjects
397 " Interpreter operators
398   syn keyword postscrOperator   setucacheparams setvmthreshold ucachestatus setsystemparams
399   syn keyword postscrOperator   setuserparams currentuserparams setcacheparams currentcacheparams
400   syn keyword postscrOperator   currentdevparams setdevparams vmreclaim currentsystemparams
402 " PS2 constants
403   syn keyword postscrConstant   contained DeviceCMYK Pattern Indexed Separation Cyan Magenta Yellow Black
404   syn keyword postscrConstant   contained CIEBasedA CIEBasedABC CIEBasedDEF CIEBasedDEFG
406 " PS2 $error dictionary entries
407   syn keyword postscrConstant   contained newerror errorname command errorinfo ostack estack dstack
408   syn keyword postscrConstant   contained recordstacks binary
410 " PS2 Category dictionary
411   syn keyword postscrConstant   contained DefineResource UndefineResource FindResource ResourceStatus
412   syn keyword postscrConstant   contained ResourceForAll Category InstanceType ResourceFileName
414 " PS2 Category names
415   syn keyword postscrConstant   contained Font Encoding Form Pattern ProcSet ColorSpace Halftone
416   syn keyword postscrConstant   contained ColorRendering Filter ColorSpaceFamily Emulator IODevice
417   syn keyword postscrConstant   contained ColorRenderingType FMapType FontType FormType HalftoneType
418   syn keyword postscrConstant   contained ImageType PatternType Category Generic
420 " PS2 pagedevice dictionary entries
421   syn keyword postscrConstant   contained PageSize MediaColor MediaWeight MediaType InputAttributes ManualFeed
422   syn keyword postscrConstant   contained OutputType OutputAttributes NumCopies Collate Duplex Tumble
423   syn keyword postscrConstant   contained Separations HWResolution Margins NegativePrint MirrorPrint
424   syn keyword postscrConstant   contained CutMedia AdvanceMedia AdvanceDistance ImagingBBox
425   syn keyword postscrConstant   contained Policies Install BeginPage EndPage PolicyNotFound PolicyReport
426   syn keyword postscrConstant   contained ManualSize OutputFaceUp Jog
427   syn keyword postscrConstant   contained Bind BindDetails Booklet BookletDetails CollateDetails
428   syn keyword postscrConstant   contained DeviceRenderingInfo ExitJamRecovery Fold FoldDetails Laminate
429   syn keyword postscrConstant   contained ManualFeedTimeout Orientation OutputPage
430   syn keyword postscrConstant   contained PostRenderingEnhance PostRenderingEnhanceDetails
431   syn keyword postscrConstant   contained PreRenderingEnhance PreRenderingEnhanceDetails
432   syn keyword postscrConstant   contained Signature SlipSheet Staple StapleDetails Trim
433   syn keyword postscrConstant   contained ProofSet REValue PrintQuality ValuesPerColorComponent AntiAlias
435 " PS2 PDL resource entries
436   syn keyword postscrConstant   contained Selector LanguageFamily LanguageVersion
438 " PS2 halftone dictionary entries
439   syn keyword postscrConstant   contained HalftoneType HalftoneName
440   syn keyword postscrConstant   contained AccurateScreens ActualAngle Xsquare Ysquare AccurateFrequency
441   syn keyword postscrConstant   contained Frequency SpotFunction Angle Width Height Thresholds
442   syn keyword postscrConstant   contained RedFrequency RedSpotFunction RedAngle RedWidth RedHeight
443   syn keyword postscrConstant   contained GreenFrequency GreenSpotFunction GreenAngle GreenWidth GreenHeight
444   syn keyword postscrConstant   contained BlueFrequency BlueSpotFunction BlueAngle BlueWidth BlueHeight
445   syn keyword postscrConstant   contained GrayFrequency GrayAngle GraySpotFunction GrayWidth GrayHeight
446   syn keyword postscrConstant   contained GrayThresholds BlueThresholds GreenThresholds RedThresholds
447   syn keyword postscrConstant   contained TransferFunction
449 " PS2 CSR dictionaries
450   syn keyword postscrConstant   contained RangeA DecodeA MatrixA RangeABC DecodeABC MatrixABC BlackPoint
451   syn keyword postscrConstant   contained RangeLMN DecodeLMN MatrixLMN WhitePoint RangeDEF DecodeDEF RangeHIJ
452   syn keyword postscrConstant   contained RangeDEFG DecodeDEFG RangeHIJK Table
454 " PS2 CRD dictionaries
455   syn keyword postscrConstant   contained ColorRenderingType EncodeLMB EncodeABC RangePQR MatrixPQR
456   syn keyword postscrConstant   contained AbsoluteColorimetric RelativeColorimetric Saturation Perceptual
457   syn keyword postscrConstant   contained TransformPQR RenderTable
459 " PS2 Pattern dictionary
460   syn keyword postscrConstant   contained PatternType PaintType TilingType XStep YStep
462 " PS2 Image dictionary
463   syn keyword postscrConstant   contained ImageType ImageMatrix MultipleDataSources DataSource
464   syn keyword postscrConstant   contained BitsPerComponent Decode Interpolate
466 " PS2 Font dictionaries
467   syn keyword postscrConstant   contained FontType FontMatrix FontName FontInfo LanguageLevel WMode Encoding
468   syn keyword postscrConstant   contained UniqueID StrokeWidth Metrics Metrics2 CDevProc CharStrings Private
469   syn keyword postscrConstant   contained FullName Notice version ItalicAngle isFixedPitch UnderlinePosition
470   syn keyword postscrConstant   contained FMapType Encoding FDepVector PrefEnc EscChar ShiftOut ShiftIn
471   syn keyword postscrConstant   contained WeightVector Blend $Blend CIDFontType sfnts CIDSystemInfo CodeMap
472   syn keyword postscrConstant   contained CMap CIDFontName CIDSystemInfo UIDBase CIDDevProc CIDCount
473   syn keyword postscrConstant   contained CIDMapOffset FDArray FDBytes GDBytes GlyphData GlyphDictionary
474   syn keyword postscrConstant   contained SDBytes SubrMapOffset SubrCount BuildGlyph CIDMap FID MIDVector
475   syn keyword postscrConstant   contained Ordering Registry Supplement CMapName CMapVersion UIDOffset
476   syn keyword postscrConstant   contained SubsVector UnderlineThickness FamilyName FontBBox CurMID
477   syn keyword postscrConstant   contained Weight
479 " PS2 User paramters
480   syn keyword postscrConstant   contained MaxFontItem MinFontCompress MaxUPathItem MaxFormItem MaxPatternItem
481   syn keyword postscrConstant   contained MaxScreenItem MaxOpStack MaxDictStack MaxExecStack MaxLocalVM
482   syn keyword postscrConstant   contained VMReclaim VMThreshold
484 " PS2 System paramters
485   syn keyword postscrConstant   contained SystemParamsPassword StartJobPassword BuildTime ByteOrder RealFormat
486   syn keyword postscrConstant   contained MaxFontCache CurFontCache MaxOutlineCache CurOutlineCache
487   syn keyword postscrConstant   contained MaxUPathCache CurUPathCache MaxFormCache CurFormCache
488   syn keyword postscrConstant   contained MaxPatternCache CurPatternCache MaxScreenStorage CurScreenStorage
489   syn keyword postscrConstant   contained MaxDisplayList CurDisplayList
491 " PS2 LZW Filters
492   syn keyword postscrConstant   contained Predictor
494 " Paper Size operators
495   syn keyword postscrOperator   letter lettersmall legal ledger 11x17 a4 a3 a4small b5 note
497 " Paper Tray operators
498   syn keyword postscrOperator   lettertray legaltray ledgertray a3tray a4tray b5tray 11x17tray
500 " SCC compatibility operators
501   syn keyword postscrOperator   sccbatch sccinteractive setsccbatch setsccinteractive
503 " Page duplexing operators
504   syn keyword postscrOperator   duplexmode firstside newsheet setduplexmode settumble tumble
506 " Device compatability operators
507   syn keyword postscrOperator   devdismount devformat devmount devstatus
508   syn keyword postscrRepeat     devforall
510 " Imagesetter compatability operators
511   syn keyword postscrOperator   accuratescreens checkscreen pagemargin pageparams setaccuratescreens setpage
512   syn keyword postscrOperator   setpagemargin setpageparams
514 " Misc compatability operators
515   syn keyword postscrOperator   appletalktype buildtime byteorder checkpassword defaulttimeouts diskonline
516   syn keyword postscrOperator   diskstatus manualfeed manualfeedtimeout margins mirrorprint pagecount
517   syn keyword postscrOperator   pagestackorder printername processcolors sethardwareiomode setjobtimeout
518   syn keyword postscrOperator   setpagestockorder setprintername setresolution doprinterrors dostartpage
519   syn keyword postscrOperator   hardwareiomode initializedisk jobname jobtimeout ramsize realformat resolution
520   syn keyword postscrOperator   setdefaulttimeouts setdoprinterrors setdostartpage setdosysstart
521   syn keyword postscrOperator   setuserdiskpercent softwareiomode userdiskpercent waittimeout
522   syn keyword postscrOperator   setsoftwareiomode dosysstart emulate setmargins setmirrorprint
524 endif " PS2 highlighting
526 if postscr_level == 3
527 " Shading operators
528   syn keyword postscrOperator   setsmoothness currentsmoothness shfill
530 " Clip operators
531   syn keyword postscrOperator   clipsave cliprestore
533 " Pagedevive operators
534   syn keyword postscrOperator   setpage setpageparams
536 " Device gstate operators
537   syn keyword postscrOperator   findcolorrendering
539 " Font operators
540   syn keyword postscrOperator   composefont
542 " PS LL3 Output device resource entries
543   syn keyword postscrConstant   contained DeviceN TrappingDetailsType
545 " PS LL3 pagdevice dictionary entries
546   syn keyword postscrConstant   contained DeferredMediaSelection ImageShift InsertSheet LeadingEdge MaxSeparations
547   syn keyword postscrConstant   contained MediaClass MediaPosition OutputDevice PageDeviceName PageOffset ProcessColorModel
548   syn keyword postscrConstant   contained RollFedMedia SeparationColorNames SeparationOrder Trapping TrappingDetails
549   syn keyword postscrConstant   contained TraySwitch UseCIEColor
550   syn keyword postscrConstant   contained ColorantDetails ColorantName ColorantType NeutralDensity TrappingOrder
551   syn keyword postscrConstant   contained ColorantSetName
553 " PS LL3 trapping dictionary entries
554   syn keyword postscrConstant   contained BlackColorLimit BlackDensityLimit BlackWidth ColorantZoneDetails
555   syn keyword postscrConstant   contained SlidingTrapLimit StepLimit TrapColorScaling TrapSetName TrapWidth
556   syn keyword postscrConstant   contained ImageResolution ImageToObjectTrapping ImageTrapPlacement
557   syn keyword postscrConstant   contained StepLimit TrapColorScaling Enabled ImageInternalTrapping
559 " PS LL3 filters and entries
560   syn keyword postscrConstant   contained ReusableStreamDecode CloseSource CloseTarget UnitSize LowBitFirst
561   syn keyword postscrConstant   contained FlateEncode FlateDecode DecodeParams Intent AsyncRead
563 " PS LL3 halftone dictionary entries
564   syn keyword postscrConstant   contained Height2 Width2
566 " PS LL3 function dictionary entries
567   syn keyword postscrConstant   contained FunctionType Domain Range Order BitsPerSample Encode Size C0 C1 N
568   syn keyword postscrConstant   contained Functions Bounds
570 " PS LL3 image dictionary entries
571   syn keyword postscrConstant   contained InterleaveType MaskDict DataDict MaskColor
573 " PS LL3 Pattern and shading dictionary entries
574   syn keyword postscrConstant   contained Shading ShadingType Background ColorSpace Coords Extend Function
575   syn keyword postscrConstant   contained VerticesPerRow BitsPerCoordinate BitsPerFlag
577 " PS LL3 image dictionary entries
578   syn keyword postscrConstant   contained XOrigin YOrigin UnpaintedPath PixelCopy
580 " PS LL3 colorrendering procedures
581   syn keyword postscrProcedure  GetHalftoneName GetPageDeviceName GetSubstituteCRD
583 " PS LL3 CIDInit procedures
584   syn keyword postscrProcedure  beginbfchar beginbfrange begincidchar begincidrange begincmap begincodespacerange
585   syn keyword postscrProcedure  beginnotdefchar beginnotdefrange beginrearrangedfont beginusematrix
586   syn keyword postscrProcedure  endbfchar endbfrange endcidchar endcidrange endcmap endcodespacerange
587   syn keyword postscrProcedure  endnotdefchar endnotdefrange endrearrangedfont endusematrix
588   syn keyword postscrProcedure  StartData usefont usecmp
590 " PS LL3 Trapping procedures
591   syn keyword postscrProcedure  settrapparams currenttrapparams settrapzone
593 " PS LL3 BitmapFontInit procedures
594   syn keyword postscrProcedure  removeall removeglyphs
596 " PS LL3 Font names
597   if exists("postscr_fonts")
598     syn keyword postscrConstant contained AlbertusMT AlbertusMT-Italic AlbertusMT-Light Apple-Chancery Apple-ChanceryCE
599     syn keyword postscrConstant contained AntiqueOlive-Roman AntiqueOlive-Italic AntiqueOlive-Bold AntiqueOlive-Compact
600     syn keyword postscrConstant contained AntiqueOliveCE-Roman AntiqueOliveCE-Italic AntiqueOliveCE-Bold AntiqueOliveCE-Compact
601     syn keyword postscrConstant contained ArialMT Arial-ItalicMT Arial-LightMT Arial-BoldMT Arial-BoldItalicMT
602     syn keyword postscrConstant contained ArialCE ArialCE-Italic ArialCE-Light ArialCE-Bold ArialCE-BoldItalic
603     syn keyword postscrConstant contained AvantGarde-Book AvantGarde-BookOblique AvantGarde-Demi AvantGarde-DemiOblique
604     syn keyword postscrConstant contained AvantGardeCE-Book AvantGardeCE-BookOblique AvantGardeCE-Demi AvantGardeCE-DemiOblique
605     syn keyword postscrConstant contained Bodoni Bodoni-Italic Bodoni-Bold Bodoni-BoldItalic Bodoni-Poster Bodoni-PosterCompressed
606     syn keyword postscrConstant contained BodoniCE BodoniCE-Italic BodoniCE-Bold BodoniCE-BoldItalic BodoniCE-Poster BodoniCE-PosterCompressed
607     syn keyword postscrConstant contained Bookman-Light Bookman-LightItalic Bookman-Demi Bookman-DemiItalic
608     syn keyword postscrConstant contained BookmanCE-Light BookmanCE-LightItalic BookmanCE-Demi BookmanCE-DemiItalic
609     syn keyword postscrConstant contained Carta Chicago ChicagoCE Clarendon Clarendon-Light Clarendon-Bold
610     syn keyword postscrConstant contained ClarendonCE ClarendonCE-Light ClarendonCE-Bold CooperBlack CooperBlack-Italic
611     syn keyword postscrConstant contained Copperplate-ThirtyTwoBC CopperPlate-ThirtyThreeBC Coronet-Regular CoronetCE-Regular
612     syn keyword postscrConstant contained CourierCE CourierCE-Oblique CourierCE-Bold CourierCE-BoldOblique
613     syn keyword postscrConstant contained Eurostile Eurostile-Bold Eurostile-ExtendedTwo Eurostile-BoldExtendedTwo
614     syn keyword postscrConstant contained Eurostile EurostileCE-Bold EurostileCE-ExtendedTwo EurostileCE-BoldExtendedTwo
615     syn keyword postscrConstant contained Geneva GenevaCE GillSans GillSans-Italic GillSans-Bold GillSans-BoldItalic GillSans-BoldCondensed
616     syn keyword postscrConstant contained GillSans-Light GillSans-LightItalic GillSans-ExtraBold
617     syn keyword postscrConstant contained GillSansCE-Roman GillSansCE-Italic GillSansCE-Bold GillSansCE-BoldItalic GillSansCE-BoldCondensed
618     syn keyword postscrConstant contained GillSansCE-Light GillSansCE-LightItalic GillSansCE-ExtraBold
619     syn keyword postscrConstant contained Goudy Goudy-Italic Goudy-Bold Goudy-BoldItalic Goudy-ExtraBould
620     syn keyword postscrConstant contained HelveticaCE HelveticaCE-Oblique HelveticaCE-Bold HelveticaCE-BoldOblique
621     syn keyword postscrConstant contained Helvetica-Condensed Helvetica-Condensed-Oblique Helvetica-Condensed-Bold Helvetica-Condensed-BoldObl
622     syn keyword postscrConstant contained HelveticaCE-Condensed HelveticaCE-Condensed-Oblique HelveticaCE-Condensed-Bold
623     syn keyword postscrConstant contained HelveticaCE-Condensed-BoldObl Helvetica-Narrow Helvetica-Narrow-Oblique Helvetica-Narrow-Bold
624     syn keyword postscrConstant contained Helvetica-Narrow-BoldOblique HelveticaCE-Narrow HelveticaCE-Narrow-Oblique HelveticaCE-Narrow-Bold
625     syn keyword postscrConstant contained HelveticaCE-Narrow-BoldOblique HoeflerText-Regular HoeflerText-Italic HoeflerText-Black
626     syn keyword postscrConstant contained HoeflerText-BlackItalic HoeflerText-Ornaments HoeflerTextCE-Regular HoeflerTextCE-Italic
627     syn keyword postscrConstant contained HoeflerTextCE-Black HoeflerTextCE-BlackItalic
628     syn keyword postscrConstant contained JoannaMT JoannaMT-Italic JoannaMT-Bold JoannaMT-BoldItalic
629     syn keyword postscrConstant contained JoannaMTCE JoannaMTCE-Italic JoannaMTCE-Bold JoannaMTCE-BoldItalic
630     syn keyword postscrConstant contained LetterGothic LetterGothic-Slanted LetterGothic-Bold LetterGothic-BoldSlanted
631     syn keyword postscrConstant contained LetterGothicCE LetterGothicCE-Slanted LetterGothicCE-Bold LetterGothicCE-BoldSlanted
632     syn keyword postscrConstant contained LubalinGraph-Book LubalinGraph-BookOblique LubalinGraph-Demi LubalinGraph-DemiOblique
633     syn keyword postscrConstant contained LubalinGraphCE-Book LubalinGraphCE-BookOblique LubalinGraphCE-Demi LubalinGraphCE-DemiOblique
634     syn keyword postscrConstant contained Marigold Monaco MonacoCE MonaLisa-Recut Oxford Symbol Tekton
635     syn keyword postscrConstant contained NewCennturySchlbk-Roman NewCenturySchlbk-Italic NewCenturySchlbk-Bold NewCenturySchlbk-BoldItalic
636     syn keyword postscrConstant contained NewCenturySchlbkCE-Roman NewCenturySchlbkCE-Italic NewCenturySchlbkCE-Bold
637     syn keyword postscrConstant contained NewCenturySchlbkCE-BoldItalic NewYork NewYorkCE
638     syn keyword postscrConstant contained Optima Optima-Italic Optima-Bold Optima-BoldItalic
639     syn keyword postscrConstant contained OptimaCE OptimaCE-Italic OptimaCE-Bold OptimaCE-BoldItalic
640     syn keyword postscrConstant contained Palatino-Roman Palatino-Italic Palatino-Bold Palatino-BoldItalic
641     syn keyword postscrConstant contained PalatinoCE-Roman PalatinoCE-Italic PalatinoCE-Bold PalatinoCE-BoldItalic
642     syn keyword postscrConstant contained StempelGaramond-Roman StempelGaramond-Italic StempelGaramond-Bold StempelGaramond-BoldItalic
643     syn keyword postscrConstant contained StempelGaramondCE-Roman StempelGaramondCE-Italic StempelGaramondCE-Bold StempelGaramondCE-BoldItalic
644     syn keyword postscrConstant contained TimesCE-Roman TimesCE-Italic TimesCE-Bold TimesCE-BoldItalic
645     syn keyword postscrConstant contained TimesNewRomanPSMT TimesNewRomanPS-ItalicMT TimesNewRomanPS-BoldMT TimesNewRomanPS-BoldItalicMT
646     syn keyword postscrConstant contained TimesNewRomanCE TimesNewRomanCE-Italic TimesNewRomanCE-Bold TimesNewRomanCE-BoldItalic
647     syn keyword postscrConstant contained Univers Univers-Oblique Univers-Bold Univers-BoldOblique
648     syn keyword postscrConstant contained UniversCE-Medium UniversCE-Oblique UniversCE-Bold UniversCE-BoldOblique
649     syn keyword postscrConstant contained Univers-Light Univers-LightOblique UniversCE-Light UniversCE-LightOblique
650     syn keyword postscrConstant contained Univers-Condensed Univers-CondensedOblique Univers-CondensedBold Univers-CondensedBoldOblique
651     syn keyword postscrConstant contained UniversCE-Condensed UniversCE-CondensedOblique UniversCE-CondensedBold UniversCE-CondensedBoldOblique
652     syn keyword postscrConstant contained Univers-Extended Univers-ExtendedObl Univers-BoldExt Univers-BoldExtObl
653     syn keyword postscrConstant contained UniversCE-Extended UniversCE-ExtendedObl UniversCE-BoldExt UniversCE-BoldExtObl
654     syn keyword postscrConstant contained Wingdings-Regular ZapfChancery-MediumItalic ZapfChanceryCE-MediumItalic ZapfDingBats
655   endif " Font names
657 endif " PS LL3 highlighting
660 if exists("postscr_ghostscript")
661   " GS gstate operators
662   syn keyword postscrOperator   .setaccuratecurves .currentaccuratecurves .setclipoutside
663   syn keyword postscrOperator   .setdashadapt .currentdashadapt .setdefaultmatrix .setdotlength
664   syn keyword postscrOperator   .currentdotlength .setfilladjust2 .currentfilladjust2
665   syn keyword postscrOperator   .currentclipoutside .setcurvejoin .currentcurvejoin
667   " GS path operators
668   syn keyword postscrOperator   .dashpath
670   " GS painting operators
671   syn keyword postscrOperator   .setrasterop .currentrasterop .setsourcetransparent
672   syn keyword postscrOperator   .settexturetransparent .currenttexturetransparent
673   syn keyword postscrOperator   .currentsourcetransparent
675   " GS character operators
676   syn keyword postscrOperator   .charboxpath .type1execchar %Type1BuildChar %Type1BuildGlyph
678   " GS mathematical operators
679   syn keyword postscrMathOperator arccos arcsin
681   " GS string operators
682   syn keyword postscrOperator   .type1encrypt .type1decrypt
684   " GS relational operators (seem like math ones to me!)
685   syn keyword postscrMathOperator max min
687   " GS file operators
688   syn keyword postscrOperator   findlibfile unread writeppmfile
690   " GS vm operators
691   syn keyword postscrOperator   .forgetsave
693   " GS device operators
694   syn keyword postscrOperator   copydevice .getdevice makeimagedevice makewordimagedevice copyscanlines
695   syn keyword postscrOperator   setdevice currentdevice getdeviceprops putdeviceprops flushpage
697   " GS misc operators
698   syn keyword postscrOperator   getenv .makeoperator .setdebug .oserrno .oserror
700   " GS filters
701   syn keyword postscrConstant   contained BCPEncode BCPDecode eexecEncode eexecDecode PCXDecode
702   syn keyword postscrConstant   contained PixelDifferenceEncode PixelDifferenceDecode
703   syn keyword postscrConstant   contained PNGPredictorDecode TBCPEncode TBCPDecode zlibEncode
704   syn keyword postscrConstant   contained zlibDecode PNGPredictorEncode PFBDecode
706   " GS filter keys
707   syn keyword postscrConstant   contained InitialCodeLength FirstBitLowOrder BlockData DecodedByteAlign
709   " GS device parameters
710   syn keyword postscrConstant   contained BitsPerPixel .HWMargins HWSize Name GrayValues
711   syn keyword postscrConstant   contained ColorValues TextAlphaBits GraphicsAlphaBits BufferSpace
712   syn keyword postscrConstant   contained OpenOutputFile PageCount BandHeight BandWidth BandBufferSpace
713   syn keyword postscrConstant   contained ViewerPreProcess GreenValues BlueValues OutputFile
714   syn keyword postscrConstant   contained MaxBitmap RedValues
716 endif " GhostScript highlighting
719 " Define the default highlighting.
720 " For version 5.7 and earlier: only when not done already
721 " For version 5.8 and later: only when an item doesn't have highlighting yet
722 if version >= 508 || !exists("did_postscr_syntax_inits")
723   if version < 508
724     let did_postscr_syntax_inits = 1
725     command -nargs=+ HiLink hi link <args>
726   else
727     command -nargs=+ HiLink hi def link <args>
728   endif
730   HiLink postscrComment        Comment
732   HiLink postscrConstant       Constant
733   HiLink postscrString         String
734   HiLink postscrASCIIString    postscrString
735   HiLink postscrHexString      postscrString
736   HiLink postscrASCII85String  postscrString
737   HiLink postscrNumber         Number
738   HiLink postscrInteger        postscrNumber
739   HiLink postscrHex            postscrNumber
740   HiLink postscrRadix          postscrNumber
741   HiLink postscrFloat          Float
742   HiLink postscrBoolean        Boolean
744   HiLink postscrIdentifier     Identifier
745   HiLink postscrProcedure      Function
747   HiLink postscrName           Statement
748   HiLink postscrConditional    Conditional
749   HiLink postscrRepeat         Repeat
750   HiLink postscrOperator       Operator
751   HiLink postscrMathOperator  postscrOperator
752   HiLink postscrLogicalOperator  postscrOperator
753   HiLink postscrBinaryOperator postscrOperator
755   HiLink postscrDSCComment     SpecialComment
756   HiLink postscrSpecialChar    SpecialChar
758   HiLink postscrTodo           Todo
760   HiLink postscrError          Error
761   HiLink postscrSpecialCharError postscrError
762   HiLink postscrASCII85CharError postscrError
763   HiLink postscrHexCharError   postscrError
764   HiLink postscrIdentifierError postscrError
766   delcommand HiLink
767 endif
769 let b:current_syntax = "postscr"
771 " vim: ts=8