GRAYBYTE WORDPRESS FILE MANAGER3371

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/share/vim/vim80/syntax/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/share/vim/vim80/syntax//postscr.vim
" Vim syntax file
" Language:     PostScript - all Levels, selectable
" Maintainer:   Mike Williams <mrw@eandem.co.uk>
" Filenames:    *.ps,*.eps
" Last Change:  31st October 2007
" URL:          http://www.eandem.co.uk/mrw/vim
"
" Options Flags:
" postscr_level                 - language level to use for highligting (1, 2, or 3)
" postscr_display               - include display PS operators
" postscr_ghostscript           - include GS extensions
" postscr_fonts                 - highlight standard font names (a lot for PS 3)
" postscr_encodings             - highlight encoding names (there are a lot)
" postscr_andornot_binary       - highlight and, or, and not as binary operators (not logical)
"
" quit when a syntax file was already loaded
if exists("b:current_syntax")
  finish
endif

" PostScript is case sensitive
syn case match

" Keyword characters - all 7-bit ASCII bar PS delimiters and ws
setlocal iskeyword=33-127,^(,^),^<,^>,^[,^],^{,^},^/,^%

" Yer trusty old TODO highlghter!
syn keyword postscrTodo contained  TODO

" Comment
syn match postscrComment        "%.*$" contains=postscrTodo,@Spell
" DSC comment start line (NB: defines DSC level, not PS level!)
syn match postscrDSCComment    	"^%!PS-Adobe-\d\+\.\d\+\s*.*$"
" DSC comment line (no check on possible comments - another language!)
syn match postscrDSCComment    	"^%%\u\+.*$" contains=@postscrString,@postscrNumber,@Spell
" DSC continuation line (no check that previous line is DSC comment)
syn match  postscrDSCComment    "^%%+ *.*$" contains=@postscrString,@postscrNumber,@Spell

" Names
syn match postscrName           "\k\+"

" Identifiers
syn match postscrIdentifierError "/\{1,2}[[:space:]\[\]{}]"me=e-1
syn match postscrIdentifier     "/\{1,2}\k\+" contains=postscrConstant,postscrBoolean,postscrCustConstant

" Numbers
syn case ignore
" In file hex data - usually complete lines
syn match postscrHex            "^[[:xdigit:]][[:xdigit:][:space:]]*$"
"syn match postscrHex            "\<\x\{2,}\>"
" Integers
syn match postscrInteger        "\<[+-]\=\d\+\>"
" Radix
syn match postscrRadix          "\d\+#\x\+\>"
" Reals - upper and lower case e is allowed
syn match postscrFloat          "[+-]\=\d\+\.\>"
syn match postscrFloat          "[+-]\=\d\+\.\d*\(e[+-]\=\d\+\)\=\>"
syn match postscrFloat          "[+-]\=\.\d\+\(e[+-]\=\d\+\)\=\>"
syn match postscrFloat          "[+-]\=\d\+e[+-]\=\d\+\>"
syn cluster postscrNumber       contains=postscrInteger,postscrRadix,postscrFloat
syn case match

" Escaped characters
syn match postscrSpecialChar    contained "\\[nrtbf\\()]"
syn match postscrSpecialCharError contained "\\[^nrtbf\\()]"he=e-1
" Escaped octal characters
syn match postscrSpecialChar    contained "\\\o\{1,3}"

" Strings
" ASCII strings
syn region postscrASCIIString   start=+(+ end=+)+ skip=+([^)]*)+ contains=postscrSpecialChar,postscrSpecialCharError,@Spell
syn match postscrASCIIStringError ")"
" Hex strings
syn match postscrHexCharError   contained "[^<>[:xdigit:][:space:]]"
syn region postscrHexString     start=+<\($\|[^<]\)+ end=+>+ contains=postscrHexCharError
syn match postscrHexString      "<>"
" ASCII85 strings
syn match postscrASCII85CharError contained "[^<>\~!-uz[:space:]]"
syn region postscrASCII85String start=+<\~+ end=+\~>+ contains=postscrASCII85CharError
syn cluster postscrString       contains=postscrASCIIString,postscrHexString,postscrASCII85String


" Set default highlighting to level 2 - most common at the moment
if !exists("postscr_level")
  let postscr_level = 2
endif


" PS level 1 operators - common to all levels (well ...)

" Stack operators
syn keyword postscrOperator     pop exch dup copy index roll clear count mark cleartomark counttomark

" Math operators
syn keyword postscrMathOperator add div idiv mod mul sub abs neg ceiling floor round truncate sqrt atan cos
syn keyword postscrMathOperator sin exp ln log rand srand rrand

" Array operators
syn match postscrOperator       "[\[\]{}]"
syn keyword postscrOperator     array length get put getinterval putinterval astore aload copy
syn keyword postscrRepeat       forall

" Dictionary operators
syn keyword postscrOperator     dict maxlength begin end def load store known where currentdict
syn keyword postscrOperator     countdictstack dictstack cleardictstack internaldict
syn keyword postscrConstant     $error systemdict userdict statusdict errordict

" String operators
syn keyword postscrOperator     string anchorsearch search token

" Logic operators
syn keyword postscrLogicalOperator eq ne ge gt le lt and not or
if exists("postscr_andornot_binaryop")
  syn keyword postscrBinaryOperator and or not
else
  syn keyword postscrLogicalOperator and not or
endif
syn keyword postscrBinaryOperator xor bitshift
syn keyword postscrBoolean      true false

" PS Type names
syn keyword postscrConstant     arraytype booleantype conditiontype dicttype filetype fonttype gstatetype
syn keyword postscrConstant     integertype locktype marktype nametype nulltype operatortype
syn keyword postscrConstant     packedarraytype realtype savetype stringtype

" Control operators
syn keyword postscrConditional  if ifelse
syn keyword postscrRepeat       for repeat loop
syn keyword postscrOperator     exec exit stop stopped countexecstack execstack quit
syn keyword postscrProcedure    start

" Object operators
syn keyword postscrOperator     type cvlit cvx xcheck executeonly noaccess readonly rcheck wcheck cvi cvn cvr
syn keyword postscrOperator     cvrs cvs

" File operators
syn keyword postscrOperator     file closefile read write readhexstring writehexstring readstring writestring
syn keyword postscrOperator     bytesavailable flush flushfile resetfile status run currentfile print
syn keyword postscrOperator     stack pstack readline deletefile setfileposition fileposition renamefile
syn keyword postscrRepeat       filenameforall
syn keyword postscrProcedure    = ==

" VM operators
syn keyword postscrOperator     save restore

" Misc operators
syn keyword postscrOperator     bind null usertime executive echo realtime
syn keyword postscrConstant     product revision serialnumber version
syn keyword postscrProcedure    prompt

" GState operators
syn keyword postscrOperator     gsave grestore grestoreall initgraphics setlinewidth setlinecap currentgray
syn keyword postscrOperator     currentlinejoin setmiterlimit currentmiterlimit setdash currentdash setgray
syn keyword postscrOperator     sethsbcolor currenthsbcolor setrgbcolor currentrgbcolor currentlinewidth
syn keyword postscrOperator     currentlinecap setlinejoin setcmykcolor currentcmykcolor

" Device gstate operators
syn keyword postscrOperator     setscreen currentscreen settransfer currenttransfer setflat currentflat
syn keyword postscrOperator     currentblackgeneration setblackgeneration setundercolorremoval
syn keyword postscrOperator     setcolorscreen currentcolorscreen setcolortransfer currentcolortransfer
syn keyword postscrOperator     currentundercolorremoval

" Matrix operators
syn keyword postscrOperator     matrix initmatrix identmatrix defaultmatrix currentmatrix setmatrix translate
syn keyword postscrOperator     concat concatmatrix transform dtransform itransform idtransform invertmatrix
syn keyword postscrOperator     scale rotate

" Path operators
syn keyword postscrOperator     newpath currentpoint moveto rmoveto lineto rlineto arc arcn arcto curveto
syn keyword postscrOperator     closepath flattenpath reversepath strokepath charpath clippath pathbbox
syn keyword postscrOperator     initclip clip eoclip rcurveto
syn keyword postscrRepeat       pathforall

" Painting operators
syn keyword postscrOperator     erasepage fill eofill stroke image imagemask colorimage

" Device operators
syn keyword postscrOperator     showpage copypage nulldevice

" Character operators
syn keyword postscrProcedure    findfont
syn keyword postscrConstant     FontDirectory ISOLatin1Encoding StandardEncoding
syn keyword postscrOperator     definefont scalefont makefont setfont currentfont show ashow
syn keyword postscrOperator     stringwidth kshow setcachedevice
syn keyword postscrOperator     setcharwidth widthshow awidthshow findencoding cshow rootfont setcachedevice2

" Interpreter operators
syn keyword postscrOperator     vmstatus cachestatus setcachelimit

" PS constants
syn keyword postscrConstant     contained Gray Red Green Blue All None DeviceGray DeviceRGB

" PS Filters
syn keyword postscrConstant     contained ASCIIHexDecode ASCIIHexEncode ASCII85Decode ASCII85Encode LZWDecode
syn keyword postscrConstant     contained RunLengthDecode RunLengthEncode SubFileDecode NullEncode
syn keyword postscrConstant     contained GIFDecode PNGDecode LZWEncode

" PS JPEG filter dictionary entries
syn keyword postscrConstant     contained DCTEncode DCTDecode Colors HSamples VSamples QuantTables QFactor
syn keyword postscrConstant     contained HuffTables ColorTransform

" PS CCITT filter dictionary entries
syn keyword postscrConstant     contained CCITTFaxEncode CCITTFaxDecode Uncompressed K EndOfLine
syn keyword postscrConstant     contained Columns Rows EndOfBlock Blacks1 DamagedRowsBeforeError
syn keyword postscrConstant     contained EncodedByteAlign

" PS Form dictionary entries
syn keyword postscrConstant     contained FormType XUID BBox Matrix PaintProc Implementation

" PS Errors
syn keyword postscrProcedure    handleerror
syn keyword postscrConstant     contained  configurationerror dictfull dictstackunderflow dictstackoverflow
syn keyword postscrConstant     contained  execstackoverflow interrupt invalidaccess
syn keyword postscrConstant     contained  invalidcontext invalidexit invalidfileaccess invalidfont
syn keyword postscrConstant     contained  invalidid invalidrestore ioerror limitcheck nocurrentpoint
syn keyword postscrConstant     contained  rangecheck stackoverflow stackunderflow syntaxerror timeout
syn keyword postscrConstant     contained  typecheck undefined undefinedfilename undefinedresource
syn keyword postscrConstant     contained  undefinedresult unmatchedmark unregistered VMerror

if exists("postscr_fonts")
" Font names
  syn keyword postscrConstant   contained Symbol Times-Roman Times-Italic Times-Bold Times-BoldItalic
  syn keyword postscrConstant   contained Helvetica Helvetica-Oblique Helvetica-Bold Helvetica-BoldOblique
  syn keyword postscrConstant   contained Courier Courier-Oblique Courier-Bold Courier-BoldOblique
endif


if exists("postscr_display")
" Display PS only operators
  syn keyword postscrOperator   currentcontext fork join detach lock monitor condition wait notify yield
  syn keyword postscrOperator   viewclip eoviewclip rectviewclip initviewclip viewclippath deviceinfo
  syn keyword postscrOperator   sethalftonephase currenthalftonephase wtranslation defineusername
endif

" PS Character encoding names
if exists("postscr_encodings")
" Common encoding names
  syn keyword postscrConstant   contained .notdef

" Standard and ISO encoding names
  syn keyword postscrConstant   contained space exclam quotedbl numbersign dollar percent ampersand quoteright
  syn keyword postscrConstant   contained parenleft parenright asterisk plus comma hyphen period slash zero
  syn keyword postscrConstant   contained one two three four five six seven eight nine colon semicolon less
  syn keyword postscrConstant   contained equal greater question at
  syn keyword postscrConstant   contained bracketleft backslash bracketright asciicircum underscore quoteleft
  syn keyword postscrConstant   contained braceleft bar braceright asciitilde
  syn keyword postscrConstant   contained exclamdown cent sterling fraction yen florin section currency
  syn keyword postscrConstant   contained quotesingle quotedblleft guillemotleft guilsinglleft guilsinglright
  syn keyword postscrConstant   contained fi fl endash dagger daggerdbl periodcentered paragraph bullet
  syn keyword postscrConstant   contained quotesinglbase quotedblbase quotedblright guillemotright ellipsis
  syn keyword postscrConstant   contained perthousand questiondown grave acute circumflex tilde macron breve
  syn keyword postscrConstant   contained dotaccent dieresis ring cedilla hungarumlaut ogonek caron emdash
  syn keyword postscrConstant   contained AE ordfeminine Lslash Oslash OE ordmasculine ae dotlessi lslash
  syn keyword postscrConstant   contained oslash oe germandbls
" The following are valid names, but are used as short procedure names in generated PS!
" 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
" 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

" Symbol encoding names
  syn keyword postscrConstant   contained universal existential suchthat asteriskmath minus
  syn keyword postscrConstant   contained congruent Alpha Beta Chi Delta Epsilon Phi Gamma Eta Iota theta1
  syn keyword postscrConstant   contained Kappa Lambda Mu Nu Omicron Pi Theta Rho Sigma Tau Upsilon sigma1
  syn keyword postscrConstant   contained Omega Xi Psi Zeta therefore perpendicular
  syn keyword postscrConstant   contained radicalex alpha beta chi delta epsilon phi gamma eta iota phi1
  syn keyword postscrConstant   contained kappa lambda mu nu omicron pi theta rho sigma tau upsilon omega1
  syn keyword postscrConstant   contained Upsilon1 minute lessequal infinity club diamond heart spade
  syn keyword postscrConstant   contained arrowboth arrowleft arrowup arrowright arrowdown degree plusminus
  syn keyword postscrConstant   contained second greaterequal multiply proportional partialdiff divide
  syn keyword postscrConstant   contained notequal equivalence approxequal arrowvertex arrowhorizex
  syn keyword postscrConstant   contained aleph Ifraktur Rfraktur weierstrass circlemultiply circleplus
  syn keyword postscrConstant   contained emptyset intersection union propersuperset reflexsuperset notsubset
  syn keyword postscrConstant   contained propersubset reflexsubset element notelement angle gradient
  syn keyword postscrConstant   contained registerserif copyrightserif trademarkserif radical dotmath
  syn keyword postscrConstant   contained logicalnot logicaland logicalor arrowdblboth arrowdblleft arrowdblup
  syn keyword postscrConstant   contained arrowdblright arrowdbldown omega xi psi zeta similar carriagereturn
  syn keyword postscrConstant   contained lozenge angleleft registersans copyrightsans trademarksans summation
  syn keyword postscrConstant   contained parenlefttp parenleftex parenleftbt bracketlefttp bracketleftex
  syn keyword postscrConstant   contained bracketleftbt bracelefttp braceleftmid braceleftbt braceex euro
  syn keyword postscrConstant   contained angleright integral integraltp integralex integralbt parenrighttp
  syn keyword postscrConstant   contained parenrightex parenrightbt bracketrighttp bracketrightex
  syn keyword postscrConstant   contained bracketrightbt bracerighttp bracerightmid bracerightbt

" ISO Latin1 encoding names
  syn keyword postscrConstant   contained brokenbar copyright registered twosuperior threesuperior
  syn keyword postscrConstant   contained onesuperior onequarter onehalf threequarters
  syn keyword postscrConstant   contained Agrave Aacute Acircumflex Atilde Adieresis Aring Ccedilla Egrave
  syn keyword postscrConstant   contained Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis
  syn keyword postscrConstant   contained Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Ugrave Uacute
  syn keyword postscrConstant   contained Ucircumflex Udieresis Yacute Thorn
  syn keyword postscrConstant   contained agrave aacute acircumflex atilde adieresis aring ccedilla egrave
  syn keyword postscrConstant   contained eacute ecircumflex edieresis igrave iacute icircumflex idieresis
  syn keyword postscrConstant   contained eth ntilde ograve oacute ocircumflex otilde odieresis ugrave uacute
  syn keyword postscrConstant   contained ucircumflex udieresis yacute thorn ydieresis
  syn keyword postscrConstant   contained zcaron exclamsmall Hungarumlautsmall dollaroldstyle dollarsuperior
  syn keyword postscrConstant   contained ampersandsmall Acutesmall parenleftsuperior parenrightsuperior
  syn keyword postscrConstant   contained twodotenleader onedotenleader zerooldstyle oneoldstyle twooldstyle
  syn keyword postscrConstant   contained threeoldstyle fouroldstyle fiveoldstyle sixoldstyle sevenoldstyle
  syn keyword postscrConstant   contained eightoldstyle nineoldstyle commasuperior
  syn keyword postscrConstant   contained threequartersemdash periodsuperior questionsmall asuperior bsuperior
  syn keyword postscrConstant   contained centsuperior dsuperior esuperior isuperior lsuperior msuperior
  syn keyword postscrConstant   contained nsuperior osuperior rsuperior ssuperior tsuperior ff ffi ffl
  syn keyword postscrConstant   contained parenleftinferior parenrightinferior Circumflexsmall hyphensuperior
  syn keyword postscrConstant   contained Gravesmall Asmall Bsmall Csmall Dsmall Esmall Fsmall Gsmall Hsmall
  syn keyword postscrConstant   contained Ismall Jsmall Ksmall Lsmall Msmall Nsmall Osmall Psmall Qsmall
  syn keyword postscrConstant   contained Rsmall Ssmall Tsmall Usmall Vsmall Wsmall Xsmall Ysmall Zsmall
  syn keyword postscrConstant   contained colonmonetary onefitted rupiah Tildesmall exclamdownsmall
  syn keyword postscrConstant   contained centoldstyle Lslashsmall Scaronsmall Zcaronsmall Dieresissmall
  syn keyword postscrConstant   contained Brevesmall Caronsmall Dotaccentsmall Macronsmall figuredash
  syn keyword postscrConstant   contained hypheninferior Ogoneksmall Ringsmall Cedillasmall questiondownsmall
  syn keyword postscrConstant   contained oneeighth threeeighths fiveeighths seveneighths onethird twothirds
  syn keyword postscrConstant   contained zerosuperior foursuperior fivesuperior sixsuperior sevensuperior
  syn keyword postscrConstant   contained eightsuperior ninesuperior zeroinferior oneinferior twoinferior
  syn keyword postscrConstant   contained threeinferior fourinferior fiveinferior sixinferior seveninferior
  syn keyword postscrConstant   contained eightinferior nineinferior centinferior dollarinferior periodinferior
  syn keyword postscrConstant   contained commainferior Agravesmall Aacutesmall Acircumflexsmall
  syn keyword postscrConstant   contained Atildesmall Adieresissmall Aringsmall AEsmall Ccedillasmall
  syn keyword postscrConstant   contained Egravesmall Eacutesmall Ecircumflexsmall Edieresissmall Igravesmall
  syn keyword postscrConstant   contained Iacutesmall Icircumflexsmall Idieresissmall Ethsmall Ntildesmall
  syn keyword postscrConstant   contained Ogravesmall Oacutesmall Ocircumflexsmall Otildesmall Odieresissmall
  syn keyword postscrConstant   contained OEsmall Oslashsmall Ugravesmall Uacutesmall Ucircumflexsmall
  syn keyword postscrConstant   contained Udieresissmall Yacutesmall Thornsmall Ydieresissmall Black Bold Book
  syn keyword postscrConstant   contained Light Medium Regular Roman Semibold

" Sundry standard and expert encoding names
  syn keyword postscrConstant   contained trademark Scaron Ydieresis Zcaron scaron softhyphen overscore
  syn keyword postscrConstant   contained graybox Sacute Tcaron Zacute sacute tcaron zacute Aogonek Scedilla
  syn keyword postscrConstant   contained Zdotaccent aogonek scedilla Lcaron lcaron zdotaccent Racute Abreve
  syn keyword postscrConstant   contained Lacute Cacute Ccaron Eogonek Ecaron Dcaron Dcroat Nacute Ncaron
  syn keyword postscrConstant   contained Ohungarumlaut Rcaron Uring Uhungarumlaut Tcommaaccent racute abreve
  syn keyword postscrConstant   contained lacute cacute ccaron eogonek ecaron dcaron dcroat nacute ncaron
  syn keyword postscrConstant   contained ohungarumlaut rcaron uring uhungarumlaut tcommaaccent Gbreve
  syn keyword postscrConstant   contained Idotaccent gbreve blank apple
endif


" By default level 3 includes all level 2 operators
if postscr_level == 2 || postscr_level == 3
" Dictionary operators
  syn match postscrL2Operator     "\(<<\|>>\)"
  syn keyword postscrL2Operator   undef
  syn keyword postscrConstant   globaldict shareddict

" Device operators
  syn keyword postscrL2Operator   setpagedevice currentpagedevice

" Path operators
  syn keyword postscrL2Operator   rectclip setbbox uappend ucache upath ustrokepath arct

" Painting operators
  syn keyword postscrL2Operator   rectfill rectstroke ufill ueofill ustroke

" Array operators
  syn keyword postscrL2Operator   currentpacking setpacking packedarray

" Misc operators
  syn keyword postscrL2Operator   languagelevel

" Insideness operators
  syn keyword postscrL2Operator   infill ineofill instroke inufill inueofill inustroke

" GState operators
  syn keyword postscrL2Operator   gstate setgstate currentgstate setcolor
  syn keyword postscrL2Operator   setcolorspace currentcolorspace setstrokeadjust currentstrokeadjust
  syn keyword postscrL2Operator   currentcolor

" Device gstate operators
  syn keyword postscrL2Operator   sethalftone currenthalftone setoverprint currentoverprint
  syn keyword postscrL2Operator   setcolorrendering currentcolorrendering

" Character operators
  syn keyword postscrL2Constant   GlobalFontDirectory SharedFontDirectory
  syn keyword postscrL2Operator   glyphshow selectfont
  syn keyword postscrL2Operator   addglyph undefinefont xshow xyshow yshow

" Pattern operators
  syn keyword postscrL2Operator   makepattern setpattern execform

" Resource operators
  syn keyword postscrL2Operator   defineresource undefineresource findresource resourcestatus
  syn keyword postscrL2Repeat     resourceforall

" File operators
  syn keyword postscrL2Operator   filter printobject writeobject setobjectformat currentobjectformat

" VM operators
  syn keyword postscrL2Operator   currentshared setshared defineuserobject execuserobject undefineuserobject
  syn keyword postscrL2Operator   gcheck scheck startjob currentglobal setglobal
  syn keyword postscrConstant   UserObjects

" Interpreter operators
  syn keyword postscrL2Operator   setucacheparams setvmthreshold ucachestatus setsystemparams
  syn keyword postscrL2Operator   setuserparams currentuserparams setcacheparams currentcacheparams
  syn keyword postscrL2Operator   currentdevparams setdevparams vmreclaim currentsystemparams

" PS2 constants
  syn keyword postscrConstant   contained DeviceCMYK Pattern Indexed Separation Cyan Magenta Yellow Black
  syn keyword postscrConstant   contained CIEBasedA CIEBasedABC CIEBasedDEF CIEBasedDEFG

" PS2 $error dictionary entries
  syn keyword postscrConstant   contained newerror errorname command errorinfo ostack estack dstack
  syn keyword postscrConstant   contained recordstacks binary

" PS2 Category dictionary
  syn keyword postscrConstant   contained DefineResource UndefineResource FindResource ResourceStatus
  syn keyword postscrConstant   contained ResourceForAll Category InstanceType ResourceFileName

" PS2 Category names
  syn keyword postscrConstant   contained Font Encoding Form Pattern ProcSet ColorSpace Halftone
  syn keyword postscrConstant   contained ColorRendering Filter ColorSpaceFamily Emulator IODevice
  syn keyword postscrConstant   contained ColorRenderingType FMapType FontType FormType HalftoneType
  syn keyword postscrConstant   contained ImageType PatternType Category Generic

" PS2 pagedevice dictionary entries
  syn keyword postscrConstant   contained PageSize MediaColor MediaWeight MediaType InputAttributes ManualFeed
  syn keyword postscrConstant   contained OutputType OutputAttributes NumCopies Collate Duplex Tumble
  syn keyword postscrConstant   contained Separations HWResolution Margins NegativePrint MirrorPrint
  syn keyword postscrConstant   contained CutMedia AdvanceMedia AdvanceDistance ImagingBBox
  syn keyword postscrConstant   contained Policies Install BeginPage EndPage PolicyNotFound PolicyReport
  syn keyword postscrConstant   contained ManualSize OutputFaceUp Jog
  syn keyword postscrConstant   contained Bind BindDetails Booklet BookletDetails CollateDetails
  syn keyword postscrConstant   contained DeviceRenderingInfo ExitJamRecovery Fold FoldDetails Laminate
  syn keyword postscrConstant   contained ManualFeedTimeout Orientation OutputPage
  syn keyword postscrConstant   contained PostRenderingEnhance PostRenderingEnhanceDetails
  syn keyword postscrConstant   contained PreRenderingEnhance PreRenderingEnhanceDetails
  syn keyword postscrConstant   contained Signature SlipSheet Staple StapleDetails Trim
  syn keyword postscrConstant   contained ProofSet REValue PrintQuality ValuesPerColorComponent AntiAlias

" PS2 PDL resource entries
  syn keyword postscrConstant   contained Selector LanguageFamily LanguageVersion

" PS2 halftone dictionary entries
  syn keyword postscrConstant   contained HalftoneType HalftoneName
  syn keyword postscrConstant   contained AccurateScreens ActualAngle Xsquare Ysquare AccurateFrequency
  syn keyword postscrConstant   contained Frequency SpotFunction Angle Width Height Thresholds
  syn keyword postscrConstant   contained RedFrequency RedSpotFunction RedAngle RedWidth RedHeight
  syn keyword postscrConstant   contained GreenFrequency GreenSpotFunction GreenAngle GreenWidth GreenHeight
  syn keyword postscrConstant   contained BlueFrequency BlueSpotFunction BlueAngle BlueWidth BlueHeight
  syn keyword postscrConstant   contained GrayFrequency GrayAngle GraySpotFunction GrayWidth GrayHeight
  syn keyword postscrConstant   contained GrayThresholds BlueThresholds GreenThresholds RedThresholds
  syn keyword postscrConstant   contained TransferFunction

" PS2 CSR dictionaries
  syn keyword postscrConstant   contained RangeA DecodeA MatrixA RangeABC DecodeABC MatrixABC BlackPoint
  syn keyword postscrConstant   contained RangeLMN DecodeLMN MatrixLMN WhitePoint RangeDEF DecodeDEF RangeHIJ
  syn keyword postscrConstant   contained RangeDEFG DecodeDEFG RangeHIJK Table

" PS2 CRD dictionaries
  syn keyword postscrConstant   contained ColorRenderingType EncodeLMB EncodeABC RangePQR MatrixPQR
  syn keyword postscrConstant   contained AbsoluteColorimetric RelativeColorimetric Saturation Perceptual
  syn keyword postscrConstant   contained TransformPQR RenderTable

" PS2 Pattern dictionary
  syn keyword postscrConstant   contained PatternType PaintType TilingType XStep YStep

" PS2 Image dictionary
  syn keyword postscrConstant   contained ImageType ImageMatrix MultipleDataSources DataSource
  syn keyword postscrConstant   contained BitsPerComponent Decode Interpolate

" PS2 Font dictionaries
  syn keyword postscrConstant   contained FontType FontMatrix FontName FontInfo LanguageLevel WMode Encoding
  syn keyword postscrConstant   contained UniqueID StrokeWidth Metrics Metrics2 CDevProc CharStrings Private
  syn keyword postscrConstant   contained FullName Notice version ItalicAngle isFixedPitch UnderlinePosition
  syn keyword postscrConstant   contained FMapType Encoding FDepVector PrefEnc EscChar ShiftOut ShiftIn
  syn keyword postscrConstant   contained WeightVector Blend $Blend CIDFontType sfnts CIDSystemInfo CodeMap
  syn keyword postscrConstant   contained CMap CIDFontName CIDSystemInfo UIDBase CIDDevProc CIDCount
  syn keyword postscrConstant   contained CIDMapOffset FDArray FDBytes GDBytes GlyphData GlyphDictionary
  syn keyword postscrConstant   contained SDBytes SubrMapOffset SubrCount BuildGlyph CIDMap FID MIDVector
  syn keyword postscrConstant   contained Ordering Registry Supplement CMapName CMapVersion UIDOffset
  syn keyword postscrConstant   contained SubsVector UnderlineThickness FamilyName FontBBox CurMID
  syn keyword postscrConstant   contained Weight

" PS2 User paramters
  syn keyword postscrConstant   contained MaxFontItem MinFontCompress MaxUPathItem MaxFormItem MaxPatternItem
  syn keyword postscrConstant   contained MaxScreenItem MaxOpStack MaxDictStack MaxExecStack MaxLocalVM
  syn keyword postscrConstant   contained VMReclaim VMThreshold

" PS2 System paramters
  syn keyword postscrConstant   contained SystemParamsPassword StartJobPassword BuildTime ByteOrder RealFormat
  syn keyword postscrConstant   contained MaxFontCache CurFontCache MaxOutlineCache CurOutlineCache
  syn keyword postscrConstant   contained MaxUPathCache CurUPathCache MaxFormCache CurFormCache
  syn keyword postscrConstant   contained MaxPatternCache CurPatternCache MaxScreenStorage CurScreenStorage
  syn keyword postscrConstant   contained MaxDisplayList CurDisplayList

" PS2 LZW Filters
  syn keyword postscrConstant   contained Predictor

" Paper Size operators
  syn keyword postscrL2Operator   letter lettersmall legal ledger 11x17 a4 a3 a4small b5 note

" Paper Tray operators
  syn keyword postscrL2Operator   lettertray legaltray ledgertray a3tray a4tray b5tray 11x17tray

" SCC compatibility operators
  syn keyword postscrL2Operator   sccbatch sccinteractive setsccbatch setsccinteractive

" Page duplexing operators
  syn keyword postscrL2Operator   duplexmode firstside newsheet setduplexmode settumble tumble

" Device compatability operators
  syn keyword postscrL2Operator   devdismount devformat devmount devstatus
  syn keyword postscrL2Repeat     devforall

" Imagesetter compatability operators
  syn keyword postscrL2Operator   accuratescreens checkscreen pagemargin pageparams setaccuratescreens setpage
  syn keyword postscrL2Operator   setpagemargin setpageparams

" Misc compatability operators
  syn keyword postscrL2Operator   appletalktype buildtime byteorder checkpassword defaulttimeouts diskonline
  syn keyword postscrL2Operator   diskstatus manualfeed manualfeedtimeout margins mirrorprint pagecount
  syn keyword postscrL2Operator   pagestackorder printername processcolors sethardwareiomode setjobtimeout
  syn keyword postscrL2Operator   setpagestockorder setprintername setresolution doprinterrors dostartpage
  syn keyword postscrL2Operator   hardwareiomode initializedisk jobname jobtimeout ramsize realformat resolution
  syn keyword postscrL2Operator   setdefaulttimeouts setdoprinterrors setdostartpage setdosysstart
  syn keyword postscrL2Operator   setuserdiskpercent softwareiomode userdiskpercent waittimeout
  syn keyword postscrL2Operator   setsoftwareiomode dosysstart emulate setmargins setmirrorprint

endif " PS2 highlighting

if postscr_level == 3
" Shading operators
  syn keyword postscrL3Operator setsmoothness currentsmoothness shfill

" Clip operators
  syn keyword postscrL3Operator clipsave cliprestore

" Pagedevive operators
  syn keyword postscrL3Operator setpage setpageparams

" Device gstate operators
  syn keyword postscrL3Operator findcolorrendering

" Font operators
  syn keyword postscrL3Operator composefont

" PS LL3 Output device resource entries
  syn keyword postscrConstant   contained DeviceN TrappingDetailsType

" PS LL3 pagdevice dictionary entries
  syn keyword postscrConstant   contained DeferredMediaSelection ImageShift InsertSheet LeadingEdge MaxSeparations
  syn keyword postscrConstant   contained MediaClass MediaPosition OutputDevice PageDeviceName PageOffset ProcessColorModel
  syn keyword postscrConstant   contained RollFedMedia SeparationColorNames SeparationOrder Trapping TrappingDetails
  syn keyword postscrConstant   contained TraySwitch UseCIEColor
  syn keyword postscrConstant   contained ColorantDetails ColorantName ColorantType NeutralDensity TrappingOrder
  syn keyword postscrConstant   contained ColorantSetName

" PS LL3 trapping dictionary entries
  syn keyword postscrConstant   contained BlackColorLimit BlackDensityLimit BlackWidth ColorantZoneDetails
  syn keyword postscrConstant   contained SlidingTrapLimit StepLimit TrapColorScaling TrapSetName TrapWidth
  syn keyword postscrConstant   contained ImageResolution ImageToObjectTrapping ImageTrapPlacement
  syn keyword postscrConstant   contained StepLimit TrapColorScaling Enabled ImageInternalTrapping

" PS LL3 filters and entries
  syn keyword postscrConstant   contained ReusableStreamDecode CloseSource CloseTarget UnitSize LowBitFirst
  syn keyword postscrConstant   contained FlateEncode FlateDecode DecodeParams Intent AsyncRead

" PS LL3 halftone dictionary entries
  syn keyword postscrConstant   contained Height2 Width2

" PS LL3 function dictionary entries
  syn keyword postscrConstant   contained FunctionType Domain Range Order BitsPerSample Encode Size C0 C1 N
  syn keyword postscrConstant   contained Functions Bounds

" PS LL3 image dictionary entries
  syn keyword postscrConstant   contained InterleaveType MaskDict DataDict MaskColor

" PS LL3 Pattern and shading dictionary entries
  syn keyword postscrConstant   contained Shading ShadingType Background ColorSpace Coords Extend Function
  syn keyword postscrConstant   contained VerticesPerRow BitsPerCoordinate BitsPerFlag

" PS LL3 image dictionary entries
  syn keyword postscrConstant   contained XOrigin YOrigin UnpaintedPath PixelCopy

" PS LL3 colorrendering procedures
  syn keyword postscrProcedure  GetHalftoneName GetPageDeviceName GetSubstituteCRD

" PS LL3 CIDInit procedures
  syn keyword postscrProcedure  beginbfchar beginbfrange begincidchar begincidrange begincmap begincodespacerange
  syn keyword postscrProcedure  beginnotdefchar beginnotdefrange beginrearrangedfont beginusematrix
  syn keyword postscrProcedure  endbfchar endbfrange endcidchar endcidrange endcmap endcodespacerange
  syn keyword postscrProcedure  endnotdefchar endnotdefrange endrearrangedfont endusematrix
  syn keyword postscrProcedure  StartData usefont usecmp

" PS LL3 Trapping procedures
  syn keyword postscrProcedure  settrapparams currenttrapparams settrapzone

" PS LL3 BitmapFontInit procedures
  syn keyword postscrProcedure  removeall removeglyphs

" PS LL3 Font names
  if exists("postscr_fonts")
    syn keyword postscrConstant contained AlbertusMT AlbertusMT-Italic AlbertusMT-Light Apple-Chancery Apple-ChanceryCE
    syn keyword postscrConstant contained AntiqueOlive-Roman AntiqueOlive-Italic AntiqueOlive-Bold AntiqueOlive-Compact
    syn keyword postscrConstant contained AntiqueOliveCE-Roman AntiqueOliveCE-Italic AntiqueOliveCE-Bold AntiqueOliveCE-Compact
    syn keyword postscrConstant contained ArialMT Arial-ItalicMT Arial-LightMT Arial-BoldMT Arial-BoldItalicMT
    syn keyword postscrConstant contained ArialCE ArialCE-Italic ArialCE-Light ArialCE-Bold ArialCE-BoldItalic
    syn keyword postscrConstant contained AvantGarde-Book AvantGarde-BookOblique AvantGarde-Demi AvantGarde-DemiOblique
    syn keyword postscrConstant contained AvantGardeCE-Book AvantGardeCE-BookOblique AvantGardeCE-Demi AvantGardeCE-DemiOblique
    syn keyword postscrConstant contained Bodoni Bodoni-Italic Bodoni-Bold Bodoni-BoldItalic Bodoni-Poster Bodoni-PosterCompressed
    syn keyword postscrConstant contained BodoniCE BodoniCE-Italic BodoniCE-Bold BodoniCE-BoldItalic BodoniCE-Poster BodoniCE-PosterCompressed
    syn keyword postscrConstant contained Bookman-Light Bookman-LightItalic Bookman-Demi Bookman-DemiItalic
    syn keyword postscrConstant contained BookmanCE-Light BookmanCE-LightItalic BookmanCE-Demi BookmanCE-DemiItalic
    syn keyword postscrConstant contained Carta Chicago ChicagoCE Clarendon Clarendon-Light Clarendon-Bold
    syn keyword postscrConstant contained ClarendonCE ClarendonCE-Light ClarendonCE-Bold CooperBlack CooperBlack-Italic
    syn keyword postscrConstant contained Copperplate-ThirtyTwoBC CopperPlate-ThirtyThreeBC Coronet-Regular CoronetCE-Regular
    syn keyword postscrConstant contained CourierCE CourierCE-Oblique CourierCE-Bold CourierCE-BoldOblique
    syn keyword postscrConstant contained Eurostile Eurostile-Bold Eurostile-ExtendedTwo Eurostile-BoldExtendedTwo
    syn keyword postscrConstant contained Eurostile EurostileCE-Bold EurostileCE-ExtendedTwo EurostileCE-BoldExtendedTwo
    syn keyword postscrConstant contained Geneva GenevaCE GillSans GillSans-Italic GillSans-Bold GillSans-BoldItalic GillSans-BoldCondensed
    syn keyword postscrConstant contained GillSans-Light GillSans-LightItalic GillSans-ExtraBold
    syn keyword postscrConstant contained GillSansCE-Roman GillSansCE-Italic GillSansCE-Bold GillSansCE-BoldItalic GillSansCE-BoldCondensed
    syn keyword postscrConstant contained GillSansCE-Light GillSansCE-LightItalic GillSansCE-ExtraBold
    syn keyword postscrConstant contained Goudy Goudy-Italic Goudy-Bold Goudy-BoldItalic Goudy-ExtraBould
    syn keyword postscrConstant contained HelveticaCE HelveticaCE-Oblique HelveticaCE-Bold HelveticaCE-BoldOblique
    syn keyword postscrConstant contained Helvetica-Condensed Helvetica-Condensed-Oblique Helvetica-Condensed-Bold Helvetica-Condensed-BoldObl
    syn keyword postscrConstant contained HelveticaCE-Condensed HelveticaCE-Condensed-Oblique HelveticaCE-Condensed-Bold
    syn keyword postscrConstant contained HelveticaCE-Condensed-BoldObl Helvetica-Narrow Helvetica-Narrow-Oblique Helvetica-Narrow-Bold
    syn keyword postscrConstant contained Helvetica-Narrow-BoldOblique HelveticaCE-Narrow HelveticaCE-Narrow-Oblique HelveticaCE-Narrow-Bold
    syn keyword postscrConstant contained HelveticaCE-Narrow-BoldOblique HoeflerText-Regular HoeflerText-Italic HoeflerText-Black
    syn keyword postscrConstant contained HoeflerText-BlackItalic HoeflerText-Ornaments HoeflerTextCE-Regular HoeflerTextCE-Italic
    syn keyword postscrConstant contained HoeflerTextCE-Black HoeflerTextCE-BlackItalic
    syn keyword postscrConstant contained JoannaMT JoannaMT-Italic JoannaMT-Bold JoannaMT-BoldItalic
    syn keyword postscrConstant contained JoannaMTCE JoannaMTCE-Italic JoannaMTCE-Bold JoannaMTCE-BoldItalic
    syn keyword postscrConstant contained LetterGothic LetterGothic-Slanted LetterGothic-Bold LetterGothic-BoldSlanted
    syn keyword postscrConstant contained LetterGothicCE LetterGothicCE-Slanted LetterGothicCE-Bold LetterGothicCE-BoldSlanted
    syn keyword postscrConstant contained LubalinGraph-Book LubalinGraph-BookOblique LubalinGraph-Demi LubalinGraph-DemiOblique
    syn keyword postscrConstant contained LubalinGraphCE-Book LubalinGraphCE-BookOblique LubalinGraphCE-Demi LubalinGraphCE-DemiOblique
    syn keyword postscrConstant contained Marigold Monaco MonacoCE MonaLisa-Recut Oxford Symbol Tekton
    syn keyword postscrConstant contained NewCennturySchlbk-Roman NewCenturySchlbk-Italic NewCenturySchlbk-Bold NewCenturySchlbk-BoldItalic
    syn keyword postscrConstant contained NewCenturySchlbkCE-Roman NewCenturySchlbkCE-Italic NewCenturySchlbkCE-Bold
    syn keyword postscrConstant contained NewCenturySchlbkCE-BoldItalic NewYork NewYorkCE
    syn keyword postscrConstant contained Optima Optima-Italic Optima-Bold Optima-BoldItalic
    syn keyword postscrConstant contained OptimaCE OptimaCE-Italic OptimaCE-Bold OptimaCE-BoldItalic
    syn keyword postscrConstant contained Palatino-Roman Palatino-Italic Palatino-Bold Palatino-BoldItalic
    syn keyword postscrConstant contained PalatinoCE-Roman PalatinoCE-Italic PalatinoCE-Bold PalatinoCE-BoldItalic
    syn keyword postscrConstant contained StempelGaramond-Roman StempelGaramond-Italic StempelGaramond-Bold StempelGaramond-BoldItalic
    syn keyword postscrConstant contained StempelGaramondCE-Roman StempelGaramondCE-Italic StempelGaramondCE-Bold StempelGaramondCE-BoldItalic
    syn keyword postscrConstant contained TimesCE-Roman TimesCE-Italic TimesCE-Bold TimesCE-BoldItalic
    syn keyword postscrConstant contained TimesNewRomanPSMT TimesNewRomanPS-ItalicMT TimesNewRomanPS-BoldMT TimesNewRomanPS-BoldItalicMT
    syn keyword postscrConstant contained TimesNewRomanCE TimesNewRomanCE-Italic TimesNewRomanCE-Bold TimesNewRomanCE-BoldItalic
    syn keyword postscrConstant contained Univers Univers-Oblique Univers-Bold Univers-BoldOblique
    syn keyword postscrConstant contained UniversCE-Medium UniversCE-Oblique UniversCE-Bold UniversCE-BoldOblique
    syn keyword postscrConstant contained Univers-Light Univers-LightOblique UniversCE-Light UniversCE-LightOblique
    syn keyword postscrConstant contained Univers-Condensed Univers-CondensedOblique Univers-CondensedBold Univers-CondensedBoldOblique
    syn keyword postscrConstant contained UniversCE-Condensed UniversCE-CondensedOblique UniversCE-CondensedBold UniversCE-CondensedBoldOblique
    syn keyword postscrConstant contained Univers-Extended Univers-ExtendedObl Univers-BoldExt Univers-BoldExtObl
    syn keyword postscrConstant contained UniversCE-Extended UniversCE-ExtendedObl UniversCE-BoldExt UniversCE-BoldExtObl
    syn keyword postscrConstant contained Wingdings-Regular ZapfChancery-MediumItalic ZapfChanceryCE-MediumItalic ZapfDingBats
  endif " Font names

endif " PS LL3 highlighting


if exists("postscr_ghostscript")
  " GS gstate operators
  syn keyword postscrGSOperator   .setaccuratecurves .currentaccuratecurves .setclipoutside
  syn keyword postscrGSOperator   .setdashadapt .currentdashadapt .setdefaultmatrix .setdotlength
  syn keyword postscrGSOperator   .currentdotlength .setfilladjust2 .currentfilladjust2
  syn keyword postscrGSOperator   .currentclipoutside .setcurvejoin .currentcurvejoin
  syn keyword postscrGSOperator   .setblendmode .currentblendmode .setopacityalpha .currentopacityalpha .setshapealpha .currentshapealpha
  syn keyword postscrGSOperator   .setlimitclamp .currentlimitclamp .setoverprintmode .currentoverprintmode

  " GS path operators
  syn keyword postscrGSOperator   .dashpath .rectappend

  " GS painting operators
  syn keyword postscrGSOperator   .setrasterop .currentrasterop .setsourcetransparent
  syn keyword postscrGSOperator   .settexturetransparent .currenttexturetransparent
  syn keyword postscrGSOperator   .currentsourcetransparent

  " GS character operators
  syn keyword postscrGSOperator   .charboxpath .type1execchar %Type1BuildChar %Type1BuildGlyph

  " GS mathematical operators
  syn keyword postscrGSMathOperator arccos arcsin

  " GS dictionary operators
  syn keyword postscrGSOperator   .dicttomark .forceput .forceundef .knownget .setmaxlength

  " GS byte and string operators
  syn keyword postscrGSOperator   .type1encrypt .type1decrypt
  syn keyword postscrGSOperator   .bytestring .namestring .stringmatch

  " GS relational operators (seem like math ones to me!)
  syn keyword postscrGSMathOperator max min

  " GS file operators
  syn keyword postscrGSOperator   findlibfile unread writeppmfile
  syn keyword postscrGSOperator   .filename .fileposition .peekstring .unread

  " GS vm operators
  syn keyword postscrGSOperator   .forgetsave

  " GS device operators
  syn keyword postscrGSOperator   copydevice .getdevice makeimagedevice makewordimagedevice copyscanlines
  syn keyword postscrGSOperator   setdevice currentdevice getdeviceprops putdeviceprops flushpage
  syn keyword postscrGSOperator   finddevice findprotodevice .getbitsrect

  " GS misc operators
  syn keyword postscrGSOperator   getenv .makeoperator .setdebug .oserrno .oserror .execn

  " GS rendering stack operators
  syn keyword postscrGSOperator   .begintransparencygroup .discardtransparencygroup .endtransparencygroup
  syn keyword postscrGSOperator   .begintransparencymask .discardtransparencymask .endtransparencymask .inittransparencymask
  syn keyword postscrGSOperator   .settextknockout .currenttextknockout

  " GS filters
  syn keyword postscrConstant   contained BCPEncode BCPDecode eexecEncode eexecDecode PCXDecode
  syn keyword postscrConstant   contained PixelDifferenceEncode PixelDifferenceDecode
  syn keyword postscrConstant   contained PNGPredictorDecode TBCPEncode TBCPDecode zlibEncode
  syn keyword postscrConstant   contained zlibDecode PNGPredictorEncode PFBDecode
  syn keyword postscrConstant   contained MD5Encode

  " GS filter keys
  syn keyword postscrConstant   contained InitialCodeLength FirstBitLowOrder BlockData DecodedByteAlign

  " GS device parameters
  syn keyword postscrConstant   contained BitsPerPixel .HWMargins HWSize Name GrayValues
  syn keyword postscrConstant   contained ColorValues TextAlphaBits GraphicsAlphaBits BufferSpace
  syn keyword postscrConstant   contained OpenOutputFile PageCount BandHeight BandWidth BandBufferSpace
  syn keyword postscrConstant   contained ViewerPreProcess GreenValues BlueValues OutputFile
  syn keyword postscrConstant   contained MaxBitmap RedValues

endif " GhostScript highlighting

" Define the default highlighting.
" Only when an item doesn't have highlighting yet

hi def link postscrComment         Comment

hi def link postscrConstant        Constant
hi def link postscrString          String
hi def link postscrASCIIString     postscrString
hi def link postscrHexString       postscrString
hi def link postscrASCII85String   postscrString
hi def link postscrNumber          Number
hi def link postscrInteger         postscrNumber
hi def link postscrHex             postscrNumber
hi def link postscrRadix           postscrNumber
hi def link postscrFloat           Float
hi def link postscrBoolean         Boolean

hi def link postscrIdentifier      Identifier
hi def link postscrProcedure       Function

hi def link postscrName            Statement
hi def link postscrConditional     Conditional
hi def link postscrRepeat          Repeat
hi def link postscrL2Repeat        postscrRepeat
hi def link postscrOperator        Operator
hi def link postscrL1Operator      postscrOperator
hi def link postscrL2Operator      postscrOperator
hi def link postscrL3Operator      postscrOperator
hi def link postscrMathOperator    postscrOperator
hi def link postscrLogicalOperator postscrOperator
hi def link postscrBinaryOperator  postscrOperator

hi def link postscrDSCComment      SpecialComment
hi def link postscrSpecialChar     SpecialChar

hi def link postscrTodo            Todo

hi def link postscrError           Error
hi def link postscrSpecialCharError postscrError
hi def link postscrASCII85CharError postscrError
hi def link postscrHexCharError    postscrError
hi def link postscrASCIIStringError postscrError
hi def link postscrIdentifierError postscrError

if exists("postscr_ghostscript")
hi def link postscrGSOperator      postscrOperator
hi def link postscrGSMathOperator  postscrMathOperator
else
hi def link postscrGSOperator      postscrError
hi def link postscrGSMathOperator  postscrError
endif


let b:current_syntax = "postscr"

" vim: ts=8

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 05 2024 23:19:13
root / root
0755
2html.vim
67.554 KB
August 02 2022 16:56:59
root / root
0644
README.txt
1.37 KB
August 02 2022 16:56:59
root / root
0644
a2ps.vim
2.369 KB
August 02 2022 16:56:59
root / root
0644
a65.vim
6.244 KB
August 02 2022 16:56:59
root / root
0644
aap.vim
5.563 KB
August 02 2022 16:56:59
root / root
0644
abap.vim
8.818 KB
August 02 2022 16:56:59
root / root
0644
abaqus.vim
1.068 KB
August 02 2022 16:56:59
root / root
0644
abc.vim
1.799 KB
August 02 2022 16:56:59
root / root
0644
abel.vim
4.994 KB
August 02 2022 16:56:59
root / root
0644
acedb.vim
4.757 KB
August 02 2022 16:56:59
root / root
0644
ada.vim
12.744 KB
August 02 2022 16:56:59
root / root
0644
aflex.vim
4.266 KB
August 02 2022 16:56:59
root / root
0644
ahdl.vim
2.706 KB
August 02 2022 16:56:59
root / root
0644
alsaconf.vim
1.51 KB
August 02 2022 16:56:59
root / root
0644
amiga.vim
2.897 KB
August 02 2022 16:56:59
root / root
0644
aml.vim
23.571 KB
August 02 2022 16:56:59
root / root
0644
ampl.vim
4.012 KB
August 02 2022 16:56:59
root / root
0644
ant.vim
5.68 KB
August 02 2022 16:56:59
root / root
0644
antlr.vim
1.751 KB
August 02 2022 16:56:59
root / root
0644
apache.vim
14.618 KB
August 02 2022 16:56:59
root / root
0644
apachestyle.vim
1.384 KB
August 02 2022 16:56:59
root / root
0644
aptconf.vim
21.707 KB
August 02 2022 16:56:59
root / root
0644
arch.vim
1.122 KB
August 02 2022 16:56:59
root / root
0644
arduino.vim
1.983 KB
August 02 2022 16:56:59
root / root
0644
art.vim
1.267 KB
August 02 2022 16:56:59
root / root
0644
asciidoc.vim
10.74 KB
August 02 2022 16:56:59
root / root
0644
asm.vim
4.236 KB
August 02 2022 16:56:59
root / root
0644
asm68k.vim
13.945 KB
August 02 2022 16:56:59
root / root
0644
asmh8300.vim
1.947 KB
August 02 2022 16:56:59
root / root
0644
asn.vim
2.518 KB
August 02 2022 16:56:59
root / root
0644
aspperl.vim
0.792 KB
August 02 2022 16:56:59
root / root
0644
aspvbs.vim
8.886 KB
August 02 2022 16:56:59
root / root
0644
asterisk.vim
5.395 KB
August 02 2022 16:56:59
root / root
0644
asteriskvm.vim
2.277 KB
August 02 2022 16:56:59
root / root
0644
atlas.vim
2.541 KB
August 02 2022 16:56:59
root / root
0644
autodoc.vim
3.643 KB
August 02 2022 16:56:59
root / root
0644
autohotkey.vim
11.583 KB
August 02 2022 16:56:59
root / root
0644
autoit.vim
46.889 KB
August 02 2022 16:56:59
root / root
0644
automake.vim
3.879 KB
August 02 2022 16:56:59
root / root
0644
ave.vim
1.855 KB
August 02 2022 16:56:59
root / root
0644
avra.vim
2.62 KB
August 02 2022 16:56:59
root / root
0644
awk.vim
7.655 KB
August 02 2022 16:56:59
root / root
0644
ayacc.vim
2.524 KB
August 02 2022 16:56:59
root / root
0644
b.vim
4.787 KB
August 02 2022 16:56:59
root / root
0644
baan.vim
71.87 KB
August 02 2022 16:56:59
root / root
0644
basic.vim
7.938 KB
August 02 2022 16:56:59
root / root
0644
bc.vim
1.749 KB
August 02 2022 16:56:59
root / root
0644
bdf.vim
3.751 KB
August 02 2022 16:56:59
root / root
0644
bib.vim
5.863 KB
August 02 2022 16:56:59
root / root
0644
bindzone.vim
4.713 KB
August 02 2022 16:56:59
root / root
0644
blank.vim
0.775 KB
August 02 2022 16:56:59
root / root
0644
bst.vim
2.759 KB
August 02 2022 16:56:59
root / root
0644
btm.vim
9.067 KB
August 02 2022 16:56:59
root / root
0644
bzl.vim
0.365 KB
August 02 2022 16:56:59
root / root
0644
bzr.vim
1.523 KB
August 02 2022 16:56:59
root / root
0644
c.vim
25.748 KB
August 02 2022 16:56:59
root / root
0644
cabal.vim
4.209 KB
August 02 2022 16:56:59
root / root
0644
calendar.vim
4.924 KB
August 02 2022 16:56:59
root / root
0644
catalog.vim
0.899 KB
August 02 2022 16:56:59
root / root
0644
cdl.vim
3.02 KB
August 02 2022 16:56:59
root / root
0644
cdrdaoconf.vim
3.562 KB
August 02 2022 16:56:59
root / root
0644
cdrtoc.vim
22.223 KB
August 02 2022 16:56:59
root / root
0644
cf.vim
18.207 KB
August 02 2022 16:56:59
root / root
0644
cfg.vim
1.319 KB
August 02 2022 16:56:59
root / root
0644
ch.vim
0.9 KB
August 02 2022 16:56:59
root / root
0644
chaiscript.vim
2.819 KB
August 02 2022 16:56:59
root / root
0644
change.vim
0.88 KB
August 02 2022 16:56:59
root / root
0644
changelog.vim
2.048 KB
August 02 2022 16:56:59
root / root
0644
chaskell.vim
0.325 KB
August 02 2022 16:56:59
root / root
0644
cheetah.vim
1.711 KB
August 02 2022 16:56:59
root / root
0644
chicken.vim
2.557 KB
August 02 2022 16:56:59
root / root
0644
chill.vim
7.836 KB
August 02 2022 16:56:59
root / root
0644
chordpro.vim
2.462 KB
August 02 2022 16:56:59
root / root
0644
cl.vim
3.813 KB
August 02 2022 16:56:59
root / root
0644
clean.vim
3.077 KB
August 02 2022 16:56:59
root / root
0644
clipper.vim
5.445 KB
August 02 2022 16:56:59
root / root
0644
clojure.vim
40.95 KB
August 02 2022 16:56:59
root / root
0644
cmake.vim
41.16 KB
August 02 2022 16:56:59
root / root
0644
cmod.vim
6.124 KB
August 02 2022 16:56:59
root / root
0644
cmusrc.vim
12.618 KB
August 02 2022 16:56:59
root / root
0644
cobol.vim
9.688 KB
August 02 2022 16:56:59
root / root
0644
coco.vim
1.27 KB
August 02 2022 16:56:59
root / root
0644
colortest.vim
3.126 KB
August 02 2022 16:56:59
root / root
0644
conaryrecipe.vim
7.848 KB
August 02 2022 16:56:59
root / root
0644
conf.vim
0.78 KB
August 02 2022 16:56:59
root / root
0644
config.vim
2.025 KB
August 02 2022 16:56:59
root / root
0644
context.vim
6.054 KB
August 02 2022 16:56:59
root / root
0644
cpp.vim
2.802 KB
August 02 2022 16:56:59
root / root
0644
crm.vim
1.169 KB
August 02 2022 16:56:59
root / root
0644
crontab.vim
2.163 KB
August 02 2022 16:56:59
root / root
0644
cs.vim
5.947 KB
August 02 2022 16:56:59
root / root
0644
csc.vim
8.251 KB
August 02 2022 16:56:59
root / root
0644
csdl.vim
23.198 KB
August 02 2022 16:56:59
root / root
0644
csh.vim
6.308 KB
August 02 2022 16:56:59
root / root
0644
csp.vim
6.984 KB
August 02 2022 16:56:59
root / root
0644
css.vim
31.192 KB
August 02 2022 16:56:59
root / root
0644
cterm.vim
6.256 KB
August 02 2022 16:56:59
root / root
0644
ctrlh.vim
0.672 KB
August 02 2022 16:56:59
root / root
0644
cucumber.vim
31.14 KB
August 02 2022 16:56:59
root / root
0644
cuda.vim
2.628 KB
August 02 2022 16:56:59
root / root
0644
cupl.vim
3.782 KB
August 02 2022 16:56:59
root / root
0644
cuplsim.vim
1.871 KB
August 02 2022 16:56:59
root / root
0644
cvs.vim
0.907 KB
August 02 2022 16:56:59
root / root
0644
cvsrc.vim
1.225 KB
August 02 2022 16:56:59
root / root
0644
cweb.vim
2.824 KB
August 02 2022 16:56:59
root / root
0644
cynlib.vim
2.488 KB
August 02 2022 16:56:59
root / root
0644
cynpp.vim
1.233 KB
August 02 2022 16:56:59
root / root
0644
d.vim
27.96 KB
August 02 2022 16:56:59
root / root
0644
datascript.vim
3.718 KB
August 02 2022 16:56:59
root / root
0644
dcd.vim
1.761 KB
August 02 2022 16:56:59
root / root
0644
dcl.vim
6.194 KB
August 02 2022 16:56:59
root / root
0644
debchangelog.vim
2.531 KB
August 02 2022 16:56:59
root / root
0644
debcontrol.vim
8.293 KB
August 02 2022 16:56:59
root / root
0644
debsources.vim
2.039 KB
August 02 2022 16:56:59
root / root
0644
def.vim
1.071 KB
August 02 2022 16:56:59
root / root
0644
denyhosts.vim
7.192 KB
August 02 2022 16:56:59
root / root
0644
desc.vim
3.005 KB
August 02 2022 16:56:59
root / root
0644
desktop.vim
4.047 KB
August 02 2022 16:56:59
root / root
0644
dictconf.vim
3.045 KB
August 02 2022 16:56:59
root / root
0644
dictdconf.vim
6.313 KB
August 02 2022 16:56:59
root / root
0644
diff.vim
16.877 KB
August 02 2022 16:56:59
root / root
0644
dircolors.vim
6.783 KB
August 02 2022 16:56:59
root / root
0644
dirpager.vim
1.745 KB
August 02 2022 16:56:59
root / root
0644
diva.vim
4.625 KB
August 02 2022 16:56:59
root / root
0644
django.vim
3.842 KB
August 02 2022 16:56:59
root / root
0644
dns.vim
0.129 KB
August 02 2022 16:56:59
root / root
0644
dnsmasq.vim
9.831 KB
August 02 2022 16:56:59
root / root
0644
docbk.vim
10.079 KB
August 02 2022 16:56:59
root / root
0644
docbksgml.vim
0.188 KB
August 02 2022 16:56:59
root / root
0644
docbkxml.vim
0.187 KB
August 02 2022 16:56:59
root / root
0644
dockerfile.vim
0.657 KB
August 02 2022 16:56:59
root / root
0644
dosbatch.vim
6.113 KB
August 02 2022 16:56:59
root / root
0644
dosini.vim
1.111 KB
August 02 2022 16:56:59
root / root
0644
dot.vim
2.947 KB
August 02 2022 16:56:59
root / root
0644
doxygen.vim
37.736 KB
August 02 2022 16:56:59
root / root
0644
dracula.vim
2.605 KB
August 02 2022 16:56:59
root / root
0644
dsl.vim
1.281 KB
August 02 2022 16:56:59
root / root
0644
dtd.vim
4.818 KB
August 02 2022 16:56:59
root / root
0644
dtml.vim
16.224 KB
August 02 2022 16:56:59
root / root
0644
dtrace.vim
6.291 KB
August 02 2022 16:56:59
root / root
0644
dts.vim
1.182 KB
August 02 2022 16:56:59
root / root
0644
dylan.vim
3.334 KB
August 02 2022 16:56:59
root / root
0644
dylanintr.vim
1.053 KB
August 02 2022 16:56:59
root / root
0644
dylanlid.vim
0.648 KB
August 02 2022 16:56:59
root / root
0644
ecd.vim
1.2 KB
August 02 2022 16:56:59
root / root
0644
edif.vim
1.248 KB
August 02 2022 16:56:59
root / root
0644
eiffel.vim
6.764 KB
August 02 2022 16:56:59
root / root
0644
elf.vim
2.293 KB
August 02 2022 16:56:59
root / root
0644
elinks.vim
10.248 KB
August 02 2022 16:56:59
root / root
0644
elmfilt.vim
2.824 KB
August 02 2022 16:56:59
root / root
0644
erlang.vim
10.655 KB
August 02 2022 16:56:59
root / root
0644
eruby.vim
2.84 KB
August 02 2022 16:56:59
root / root
0644
esmtprc.vim
0.916 KB
August 02 2022 16:56:59
root / root
0644
esqlc.vim
2.045 KB
August 02 2022 16:56:59
root / root
0644
esterel.vim
2.981 KB
August 02 2022 16:56:59
root / root
0644
eterm.vim
18.723 KB
August 02 2022 16:56:59
root / root
0644
euphoria3.vim
5.96 KB
August 02 2022 16:56:59
root / root
0644
euphoria4.vim
14.196 KB
August 02 2022 16:56:59
root / root
0644
eviews.vim
4.887 KB
August 02 2022 16:56:59
root / root
0644
exim.vim
17.661 KB
August 02 2022 16:56:59
root / root
0644
expect.vim
3.646 KB
August 02 2022 16:56:59
root / root
0644
exports.vim
1.706 KB
August 02 2022 16:56:59
root / root
0644
falcon.vim
11.731 KB
August 02 2022 16:56:59
root / root
0644
fan.vim
5.317 KB
August 02 2022 16:56:59
root / root
0644
fasm.vim
8.552 KB
August 02 2022 16:56:59
root / root
0644
fdcc.vim
5.516 KB
August 02 2022 16:56:59
root / root
0644
fetchmail.vim
3.23 KB
August 02 2022 16:56:59
root / root
0644
fgl.vim
7.104 KB
August 02 2022 16:56:59
root / root
0644
flexwiki.vim
5.308 KB
August 02 2022 16:56:59
root / root
0644
focexec.vim
3.442 KB
August 02 2022 16:56:59
root / root
0644
form.vim
6.235 KB
August 02 2022 16:56:59
root / root
0644
forth.vim
10.419 KB
August 02 2022 16:56:59
root / root
0644
fortran.vim
31.803 KB
August 02 2022 16:56:59
root / root
0644
foxpro.vim
32.086 KB
August 02 2022 16:56:59
root / root
0644
framescript.vim
11.405 KB
August 02 2022 16:56:59
root / root
0644
freebasic.vim
10.266 KB
August 02 2022 16:56:59
root / root
0644
fstab.vim
15.516 KB
August 02 2022 16:56:59
root / root
0644
fvwm.vim
24.439 KB
August 02 2022 16:56:59
root / root
0644
fvwm2m4.vim
0.694 KB
August 02 2022 16:56:59
root / root
0644
gdb.vim
4.264 KB
August 02 2022 16:56:59
root / root
0644
gdmo.vim
3.222 KB
August 02 2022 16:56:59
root / root
0644
gedcom.vim
2.222 KB
August 02 2022 16:56:59
root / root
0644
git.vim
4.059 KB
August 02 2022 16:56:59
root / root
0644
gitcommit.vim
4.753 KB
August 02 2022 16:56:59
root / root
0644
gitconfig.vim
1.578 KB
August 02 2022 16:56:59
root / root
0644
gitolite.vim
4.35 KB
August 02 2022 16:56:59
root / root
0644
gitrebase.vim
1.809 KB
August 02 2022 16:56:59
root / root
0644
gitsendemail.vim
0.566 KB
August 02 2022 16:56:59
root / root
0644
gkrellmrc.vim
4.02 KB
August 02 2022 16:56:59
root / root
0644
gnash.vim
3.381 KB
August 02 2022 16:56:59
root / root
0644
gnuplot.vim
23.108 KB
August 02 2022 16:56:59
root / root
0644
go.vim
7.719 KB
August 02 2022 16:56:59
root / root
0644
godoc.vim
0.344 KB
August 02 2022 16:56:59
root / root
0644
gp.vim
2.896 KB
August 02 2022 16:56:59
root / root
0644
gpg.vim
5.46 KB
August 02 2022 16:56:59
root / root
0644
gprof.vim
2.067 KB
August 02 2022 16:56:59
root / root
0644
grads.vim
1.701 KB
August 02 2022 16:56:59
root / root
0644
gretl.vim
3.643 KB
August 02 2022 16:56:59
root / root
0644
groff.vim
0.285 KB
August 02 2022 16:56:59
root / root
0644
groovy.vim
21.768 KB
August 02 2022 16:56:59
root / root
0644
group.vim
1.679 KB
August 02 2022 16:56:59
root / root
0644
grub.vim
3.791 KB
August 02 2022 16:56:59
root / root
0644
gsp.vim
1.983 KB
August 02 2022 16:56:59
root / root
0644
gtkrc.vim
9.1 KB
August 02 2022 16:56:59
root / root
0644
haml.vim
6.901 KB
August 02 2022 16:56:59
root / root
0644
hamster.vim
13.516 KB
August 02 2022 16:56:59
root / root
0644
haskell.vim
8.698 KB
August 02 2022 16:56:59
root / root
0644
haste.vim
4.877 KB
August 02 2022 16:56:59
root / root
0644
hastepreproc.vim
1.389 KB
August 02 2022 16:56:59
root / root
0644
hb.vim
3.084 KB
August 02 2022 16:56:59
root / root
0644
help.vim
8.152 KB
August 02 2022 16:56:59
root / root
0644
hercules.vim
5.586 KB
August 02 2022 16:56:59
root / root
0644
hex.vim
3.917 KB
August 02 2022 16:56:59
root / root
0644
hgcommit.vim
1.088 KB
August 02 2022 16:56:59
root / root
0644
hitest.vim
3.217 KB
August 02 2022 16:56:59
root / root
0644
hog.vim
10.422 KB
August 02 2022 16:56:59
root / root
0644
hostconf.vim
3.779 KB
August 02 2022 16:56:59
root / root
0644
hostsaccess.vim
0.536 KB
August 02 2022 16:56:59
root / root
0644
html.vim
16.836 KB
August 02 2022 16:56:59
root / root
0644
htmlcheetah.vim
0.477 KB
August 02 2022 16:56:59
root / root
0644
htmldjango.vim
0.987 KB
August 02 2022 16:56:59
root / root
0644
htmlm4.vim
0.654 KB
August 02 2022 16:56:59
root / root
0644
htmlos.vim
8.118 KB
August 02 2022 16:56:59
root / root
0644
ia64.vim
10.3 KB
August 02 2022 16:56:59
root / root
0644
ibasic.vim
6.871 KB
August 02 2022 16:56:59
root / root
0644
icemenu.vim
0.805 KB
August 02 2022 16:56:59
root / root
0644
icon.vim
6.813 KB
August 02 2022 16:56:59
root / root
0644
idl.vim
19.435 KB
August 02 2022 16:56:59
root / root
0644
idlang.vim
13.146 KB
August 02 2022 16:56:59
root / root
0644
indent.vim
7.003 KB
August 02 2022 16:56:59
root / root
0644
inform.vim
19.026 KB
August 02 2022 16:56:59
root / root
0644
initex.vim
18.773 KB
August 02 2022 16:56:59
root / root
0644
initng.vim
3.318 KB
August 02 2022 16:56:59
root / root
0644
inittab.vim
2.558 KB
August 02 2022 16:56:59
root / root
0644
ipfilter.vim
1.584 KB
August 02 2022 16:56:59
root / root
0644
ishd.vim
26.423 KB
August 02 2022 16:56:59
root / root
0644
iss.vim
4.871 KB
August 02 2022 16:56:59
root / root
0644
ist.vim
1.953 KB
August 02 2022 16:56:59
root / root
0644
j.vim
9.155 KB
August 02 2022 16:56:59
root / root
0644
jal.vim
8.753 KB
August 02 2022 16:56:59
root / root
0644
jam.vim
26.085 KB
August 02 2022 16:56:59
root / root
0644
jargon.vim
0.597 KB
August 02 2022 16:56:59
root / root
0644
java.vim
17.558 KB
August 02 2022 16:56:59
root / root
0644
javacc.vim
2.203 KB
August 02 2022 16:56:59
root / root
0644
javascript.vim
4.965 KB
August 02 2022 16:56:59
root / root
0644
jess.vim
6.084 KB
August 02 2022 16:56:59
root / root
0644
jgraph.vim
1.184 KB
August 02 2022 16:56:59
root / root
0644
jovial.vim
4.011 KB
August 02 2022 16:56:59
root / root
0644
jproperties.vim
5.367 KB
August 02 2022 16:56:59
root / root
0644
json.vim
5.877 KB
August 02 2022 16:56:59
root / root
0644
jsp.vim
2.615 KB
August 02 2022 16:56:59
root / root
0644
kconfig.vim
35.453 KB
August 02 2022 16:56:59
root / root
0644
kivy.vim
0.963 KB
August 02 2022 16:56:59
root / root
0644
kix.vim
6.181 KB
August 02 2022 16:56:59
root / root
0644
kscript.vim
1.938 KB
August 02 2022 16:56:59
root / root
0644
kwt.vim
2.396 KB
August 02 2022 16:56:59
root / root
0644
lace.vim
3.979 KB
August 02 2022 16:56:59
root / root
0644
latte.vim
3.429 KB
August 02 2022 16:56:59
root / root
0644
ld.vim
2.834 KB
August 02 2022 16:56:59
root / root
0644
ldapconf.vim
12.99 KB
August 02 2022 16:56:59
root / root
0644
ldif.vim
0.99 KB
August 02 2022 16:56:59
root / root
0644
less.vim
4.131 KB
August 02 2022 16:56:59
root / root
0644
lex.vim
6.57 KB
August 02 2022 16:56:59
root / root
0644
lftp.vim
7.296 KB
August 02 2022 16:56:59
root / root
0644
lhaskell.vim
4.331 KB
August 02 2022 16:56:59
root / root
0644
libao.vim
0.621 KB
August 02 2022 16:56:59
root / root
0644
lifelines.vim
6.484 KB
August 02 2022 16:56:59
root / root
0644
lilo.vim
10.183 KB
August 02 2022 16:56:59
root / root
0644
limits.vim
1.286 KB
August 02 2022 16:56:59
root / root
0644
liquid.vim
6.039 KB
August 02 2022 16:56:59
root / root
0644
lisp.vim
34.971 KB
August 02 2022 16:56:59
root / root
0644
lite.vim
4.731 KB
August 02 2022 16:56:59
root / root
0644
litestep.vim
6.52 KB
August 02 2022 16:56:59
root / root
0644
loginaccess.vim
4.099 KB
August 02 2022 16:56:59
root / root
0644
logindefs.vim
7.36 KB
August 02 2022 16:56:59
root / root
0644
logtalk.vim
15.663 KB
August 02 2022 16:56:59
root / root
0644
lotos.vim
2.306 KB
August 02 2022 16:56:59
root / root
0644
lout.vim
4.224 KB
August 02 2022 16:56:59
root / root
0644
lpc.vim
22.596 KB
August 02 2022 16:56:59
root / root
0644
lprolog.vim
3.886 KB
August 02 2022 16:56:59
root / root
0644
lscript.vim
11.815 KB
August 02 2022 16:56:59
root / root
0644
lsl.vim
15.43 KB
August 02 2022 16:56:59
root / root
0644
lss.vim
4.756 KB
August 02 2022 16:56:59
root / root
0644
lua.vim
13.723 KB
August 02 2022 16:56:59
root / root
0644
lynx.vim
6.425 KB
August 02 2022 16:56:59
root / root
0644
m4.vim
2.63 KB
August 02 2022 16:56:59
root / root
0644
mail.vim
5.927 KB
August 02 2022 16:56:59
root / root
0644
mailaliases.vim
2.702 KB
August 02 2022 16:56:59
root / root
0644
mailcap.vim
1.108 KB
August 02 2022 16:56:59
root / root
0644
make.vim
6.052 KB
August 02 2022 16:56:59
root / root
0644
mallard.vim
1.686 KB
August 02 2022 16:56:59
root / root
0644
man.vim
1.553 KB
August 02 2022 16:56:59
root / root
0644
manconf.vim
4.242 KB
August 02 2022 16:56:59
root / root
0644
manual.vim
0.888 KB
August 02 2022 16:56:59
root / root
0644
maple.vim
27.86 KB
August 02 2022 16:56:59
root / root
0644
markdown.vim
7.863 KB
August 02 2022 16:56:59
root / root
0644
masm.vim
16.821 KB
August 02 2022 16:56:59
root / root
0644
mason.vim
3.729 KB
August 02 2022 16:56:59
root / root
0644
master.vim
0.998 KB
August 02 2022 16:56:59
root / root
0644
matlab.vim
4.036 KB
August 02 2022 16:56:59
root / root
0644
maxima.vim
18.361 KB
August 02 2022 16:56:59
root / root
0644
mel.vim
3.326 KB
August 02 2022 16:56:59
root / root
0644
messages.vim
2.591 KB
August 02 2022 16:56:59
root / root
0644
mf.vim
15.062 KB
August 02 2022 16:56:59
root / root
0644
mgl.vim
3.637 KB
August 02 2022 16:56:59
root / root
0644
mgp.vim
1.953 KB
August 02 2022 16:56:59
root / root
0644
mib.vim
2.633 KB
August 02 2022 16:56:59
root / root
0644
mix.vim
2.873 KB
August 02 2022 16:56:59
root / root
0644
mma.vim
11.522 KB
August 02 2022 16:56:59
root / root
0644
mmix.vim
4.852 KB
August 02 2022 16:56:59
root / root
0644
mmp.vim
1.451 KB
August 02 2022 16:56:59
root / root
0644
modconf.vim
1.386 KB
August 02 2022 16:56:59
root / root
0644
model.vim
1.435 KB
August 02 2022 16:56:59
root / root
0644
modsim3.vim
3.538 KB
August 02 2022 16:56:59
root / root
0644
modula2.vim
3.149 KB
August 02 2022 16:56:59
root / root
0644
modula3.vim
1.965 KB
August 02 2022 16:56:59
root / root
0644
monk.vim
9.979 KB
August 02 2022 16:56:59
root / root
0644
moo.vim
9.018 KB
August 02 2022 16:56:59
root / root
0644
mp.vim
43.486 KB
August 02 2022 16:56:59
root / root
0644
mplayerconf.vim
7.312 KB
August 02 2022 16:56:59
root / root
0644
mrxvtrc.vim
9.378 KB
August 02 2022 16:56:59
root / root
0644
msidl.vim
3.383 KB
August 02 2022 16:56:59
root / root
0644
msmessages.vim
6.17 KB
August 02 2022 16:56:59
root / root
0644
msql.vim
2.334 KB
August 02 2022 16:56:59
root / root
0644
mupad.vim
15.113 KB
August 02 2022 16:56:59
root / root
0644
murphi.vim
4.511 KB
August 02 2022 16:56:59
root / root
0644
mush.vim
12.878 KB
August 02 2022 16:56:59
root / root
0644
muttrc.vim
62.554 KB
August 02 2022 16:56:59
root / root
0644
mysql.vim
17.196 KB
August 02 2022 16:56:59
root / root
0644
n1ql.vim
12.597 KB
August 02 2022 16:56:59
root / root
0644
named.vim
9.757 KB
August 02 2022 16:56:59
root / root
0644
nanorc.vim
10.371 KB
August 02 2022 16:56:59
root / root
0644
nasm.vim
25.669 KB
August 02 2022 16:56:59
root / root
0644
nastran.vim
8.305 KB
August 02 2022 16:56:59
root / root
0644
natural.vim
6.813 KB
August 02 2022 16:56:59
root / root
0644
ncf.vim
13.102 KB
August 02 2022 16:56:59
root / root
0644
neomuttrc.vim
77.37 KB
August 02 2022 16:56:59
root / root
0644
netrc.vim
1.889 KB
August 02 2022 16:56:59
root / root
0644
netrw.vim
7.05 KB
August 02 2022 16:56:59
root / root
0644
ninja.vim
2.821 KB
August 02 2022 16:56:59
root / root
0644
nosyntax.vim
0.737 KB
August 02 2022 16:56:59
root / root
0644
nqc.vim
13.738 KB
August 02 2022 16:56:59
root / root
0644
nroff.vim
7.593 KB
August 02 2022 16:56:59
root / root
0644
nsis.vim
33.111 KB
August 02 2022 16:56:59
root / root
0644
obj.vim
2.721 KB
August 02 2022 16:56:59
root / root
0644
objc.vim
40.742 KB
August 02 2022 16:56:59
root / root
0644
objcpp.vim
0.586 KB
August 02 2022 16:56:59
root / root
0644
ocaml.vim
13.224 KB
August 02 2022 16:56:59
root / root
0644
occam.vim
4.215 KB
August 02 2022 16:56:59
root / root
0644
omnimark.vim
6.228 KB
August 02 2022 16:56:59
root / root
0644
openroad.vim
13.651 KB
August 02 2022 16:56:59
root / root
0644
opl.vim
4.031 KB
August 02 2022 16:56:59
root / root
0644
ora.vim
26.505 KB
August 02 2022 16:56:59
root / root
0644
pamconf.vim
5.416 KB
August 02 2022 16:56:59
root / root
0644
papp.vim
3.7 KB
August 02 2022 16:56:59
root / root
0644
pascal.vim
14.656 KB
August 02 2022 16:56:59
root / root
0644
passwd.vim
2.386 KB
August 02 2022 16:56:59
root / root
0644
pcap.vim
1.461 KB
August 02 2022 16:56:59
root / root
0644
pccts.vim
3.997 KB
August 02 2022 16:56:59
root / root
0644
pdf.vim
3.456 KB
August 02 2022 16:56:59
root / root
0644
perl.vim
37.568 KB
August 02 2022 16:56:59
root / root
0644
perl6.vim
72.39 KB
August 02 2022 16:56:59
root / root
0644
pf.vim
5.17 KB
August 02 2022 16:56:59
root / root
0644
pfmain.vim
90.563 KB
August 02 2022 16:56:59
root / root
0644
php.vim
78.544 KB
August 02 2022 16:56:59
root / root
0644
phtml.vim
0.147 KB
August 02 2022 16:56:59
root / root
0644
pic.vim
3.255 KB
August 02 2022 16:56:59
root / root
0644
pike.vim
21.296 KB
August 02 2022 16:56:59
root / root
0644
pilrc.vim
5.187 KB
August 02 2022 16:56:59
root / root
0644
pine.vim
15.05 KB
August 02 2022 16:56:59
root / root
0644
pinfo.vim
5.172 KB
August 02 2022 16:56:59
root / root
0644
plaintex.vim
10.06 KB
August 02 2022 16:56:59
root / root
0644
pli.vim
12.912 KB
August 02 2022 16:56:59
root / root
0644
plm.vim
5.235 KB
August 02 2022 16:56:59
root / root
0644
plp.vim
1.237 KB
August 02 2022 16:56:59
root / root
0644
plsql.vim
12.615 KB
August 02 2022 16:56:59
root / root
0644
po.vim
6.243 KB
August 02 2022 16:56:59
root / root
0644
pod.vim
7.112 KB
August 02 2022 16:56:59
root / root
0644
postscr.vim
45.052 KB
August 02 2022 16:56:59
root / root
0644
pov.vim
8.845 KB
August 02 2022 16:56:59
root / root
0644
povini.vim
3.406 KB
August 02 2022 16:56:59
root / root
0644
ppd.vim
0.848 KB
August 02 2022 16:56:59
root / root
0644
ppwiz.vim
2.715 KB
August 02 2022 16:56:59
root / root
0644
prescribe.vim
2.327 KB
August 02 2022 16:56:59
root / root
0644
privoxy.vim
3.495 KB
August 02 2022 16:56:59
root / root
0644
procmail.vim
1.972 KB
August 02 2022 16:56:59
root / root
0644
progress.vim
31.004 KB
August 02 2022 16:56:59
root / root
0644
prolog.vim
4.258 KB
August 02 2022 16:56:59
root / root
0644
promela.vim
1.688 KB
August 02 2022 16:56:59
root / root
0644
proto.vim
2.864 KB
August 02 2022 16:56:59
root / root
0644
protocols.vim
1.396 KB
August 02 2022 16:56:59
root / root
0644
psf.vim
4.189 KB
August 02 2022 16:56:59
root / root
0644
ptcap.vim
4.031 KB
August 02 2022 16:56:59
root / root
0644
purifylog.vim
3.278 KB
August 02 2022 16:56:59
root / root
0644
pyrex.vim
1.624 KB
August 02 2022 16:56:59
root / root
0644
python.vim
13.945 KB
August 02 2022 16:56:59
root / root
0644
qf.vim
0.582 KB
August 02 2022 16:56:59
root / root
0644
quake.vim
8.354 KB
August 02 2022 16:56:59
root / root
0644
r.vim
13.98 KB
August 02 2022 16:56:59
root / root
0644
racc.vim
5.487 KB
August 02 2022 16:56:59
root / root
0644
radiance.vim
6.987 KB
August 02 2022 16:56:59
root / root
0644
ratpoison.vim
16.817 KB
August 02 2022 16:56:59
root / root
0644
rc.vim
9.978 KB
August 02 2022 16:56:59
root / root
0644
rcs.vim
2.083 KB
August 02 2022 16:56:59
root / root
0644
rcslog.vim
0.544 KB
August 02 2022 16:56:59
root / root
0644
readline.vim
16.601 KB
August 02 2022 16:56:59
root / root
0644
rebol.vim
6.999 KB
August 02 2022 16:56:59
root / root
0644
redif.vim
85.881 KB
August 02 2022 16:56:59
root / root
0644
registry.vim
3.276 KB
August 02 2022 16:56:59
root / root
0644
remind.vim
2.649 KB
August 02 2022 16:56:59
root / root
0644
resolv.vim
2.948 KB
August 02 2022 16:56:59
root / root
0644
reva.vim
7.403 KB
August 02 2022 16:56:59
root / root
0644
rexx.vim
14.972 KB
August 02 2022 16:56:59
root / root
0644
rhelp.vim
11.85 KB
August 02 2022 16:56:59
root / root
0644
rib.vim
2.141 KB
August 02 2022 16:56:59
root / root
0644
rmd.vim
4.303 KB
August 02 2022 16:56:59
root / root
0644
rnc.vim
2.21 KB
August 02 2022 16:56:59
root / root
0644
rng.vim
0.798 KB
August 02 2022 16:56:59
root / root
0644
rnoweb.vim
1.863 KB
August 02 2022 16:56:59
root / root
0644
robots.vim
1.493 KB
August 02 2022 16:56:59
root / root
0644
rpcgen.vim
1.627 KB
August 02 2022 16:56:59
root / root
0644
rpl.vim
25.097 KB
August 02 2022 16:56:59
root / root
0644
rrst.vim
1.274 KB
August 02 2022 16:56:59
root / root
0644
rst.vim
8.627 KB
August 02 2022 16:56:59
root / root
0644
rtf.vim
2.275 KB
August 02 2022 16:56:59
root / root
0644
ruby.vim
39.69 KB
August 02 2022 16:56:59
root / root
0644
rust.vim
16.223 KB
August 02 2022 16:56:59
root / root
0644
samba.vim
5.987 KB
August 02 2022 16:56:59
root / root
0644
sas.vim
33.288 KB
August 02 2022 16:56:59
root / root
0644
sass.vim
6.175 KB
August 02 2022 16:56:59
root / root
0644
sather.vim
3.408 KB
August 02 2022 16:56:59
root / root
0644
sbt.vim
0.859 KB
August 02 2022 16:56:59
root / root
0644
scala.vim
11.042 KB
August 02 2022 16:56:59
root / root
0644
scheme.vim
18.877 KB
August 02 2022 16:56:59
root / root
0644
scilab.vim
3.135 KB
August 02 2022 16:56:59
root / root
0644
screen.vim
8.891 KB
August 02 2022 16:56:59
root / root
0644
scss.vim
0.399 KB
August 02 2022 16:56:59
root / root
0644
sd.vim
2.171 KB
August 02 2022 16:56:59
root / root
0644
sdc.vim
1.358 KB
August 02 2022 16:56:59
root / root
0644
sdl.vim
6.409 KB
August 02 2022 16:56:59
root / root
0644
sed.vim
4.915 KB
August 02 2022 16:56:59
root / root
0644
sendpr.vim
0.884 KB
August 02 2022 16:56:59
root / root
0644
sensors.vim
1.478 KB
August 02 2022 16:56:59
root / root
0644
services.vim
1.78 KB
August 02 2022 16:56:59
root / root
0644
setserial.vim
5.106 KB
August 02 2022 16:56:59
root / root
0644
sgml.vim
8.658 KB
August 02 2022 16:56:59
root / root
0644
sgmldecl.vim
1.993 KB
August 02 2022 16:56:59
root / root
0644
sgmllnx.vim
1.808 KB
August 02 2022 16:56:59
root / root
0644
sh.vim
39.548 KB
August 02 2022 16:56:59
root / root
0644
sicad.vim
18.042 KB
August 02 2022 16:56:59
root / root
0644
sieve.vim
1.632 KB
August 02 2022 16:56:59
root / root
0644
simula.vim
3.292 KB
August 02 2022 16:56:59
root / root
0644
sinda.vim
3.58 KB
August 02 2022 16:56:59
root / root
0644
sindacmp.vim
1.244 KB
August 02 2022 16:56:59
root / root
0644
sindaout.vim
1.915 KB
August 02 2022 16:56:59
root / root
0644
sisu.vim
21.66 KB
August 02 2022 16:56:59
root / root
0644
skill.vim
25.165 KB
August 02 2022 16:56:59
root / root
0644
sl.vim
3.988 KB
August 02 2022 16:56:59
root / root
0644
slang.vim
3.225 KB
August 02 2022 16:56:59
root / root
0644
slice.vim
2.859 KB
August 02 2022 16:56:59
root / root
0644
slpconf.vim
11.515 KB
August 02 2022 16:56:59
root / root
0644
slpreg.vim
5.221 KB
August 02 2022 16:56:59
root / root
0644
slpspi.vim
1.153 KB
August 02 2022 16:56:59
root / root
0644
slrnrc.vim
12.511 KB
August 02 2022 16:56:59
root / root
0644
slrnsc.vim
3.025 KB
August 02 2022 16:56:59
root / root
0644
sm.vim
2.783 KB
August 02 2022 16:56:59
root / root
0644
smarty.vim
2.815 KB
August 02 2022 16:56:59
root / root
0644
smcl.vim
11.761 KB
August 02 2022 16:56:59
root / root
0644
smil.vim
5.484 KB
August 02 2022 16:56:59
root / root
0644
smith.vim
0.774 KB
August 02 2022 16:56:59
root / root
0644
sml.vim
9.109 KB
August 02 2022 16:56:59
root / root
0644
snnsnet.vim
2.424 KB
August 02 2022 16:56:59
root / root
0644
snnspat.vim
2.176 KB
August 02 2022 16:56:59
root / root
0644
snnsres.vim
1.888 KB
August 02 2022 16:56:59
root / root
0644
snobol4.vim
5.209 KB
August 02 2022 16:56:59
root / root
0644
spec.vim
12.332 KB
August 02 2022 16:56:59
root / root
0644
specman.vim
7.173 KB
August 02 2022 16:56:59
root / root
0644
spice.vim
2.19 KB
August 02 2022 16:56:59
root / root
0644
splint.vim
15.416 KB
August 02 2022 16:56:59
root / root
0644
spup.vim
13.6 KB
August 02 2022 16:56:59
root / root
0644
spyce.vim
4.351 KB
August 02 2022 16:56:59
root / root
0644
sql.vim
1.094 KB
August 02 2022 16:56:59
root / root
0644
sqlanywhere.vim
40.946 KB
August 02 2022 16:56:59
root / root
0644
sqlforms.vim
6.576 KB
August 02 2022 16:56:59
root / root
0644
sqlhana.vim
10.769 KB
August 02 2022 16:56:59
root / root
0644
sqlinformix.vim
5.763 KB
August 02 2022 16:56:59
root / root
0644
sqlj.vim
2.9 KB
August 02 2022 16:56:59
root / root
0644
sqloracle.vim
7.073 KB
August 02 2022 16:56:59
root / root
0644
sqr.vim
12.707 KB
August 02 2022 16:56:59
root / root
0644
squid.vim
6.769 KB
August 02 2022 16:56:59
root / root
0644
srec.vim
3.726 KB
August 02 2022 16:56:59
root / root
0644
sshconfig.vim
10.331 KB
August 02 2022 16:56:59
root / root
0644
sshdconfig.vim
10.832 KB
August 02 2022 16:56:59
root / root
0644
st.vim
2.688 KB
August 02 2022 16:56:59
root / root
0644
stata.vim
26.422 KB
August 02 2022 16:56:59
root / root
0644
stp.vim
5.3 KB
August 02 2022 16:56:59
root / root
0644
strace.vim
1.924 KB
August 02 2022 16:56:59
root / root
0644
sudoers.vim
21.536 KB
August 02 2022 16:56:59
root / root
0644
svg.vim
0.426 KB
August 02 2022 16:56:59
root / root
0644
svn.vim
1.809 KB
August 02 2022 16:56:59
root / root
0644
syncolor.vim
3.997 KB
August 02 2022 16:56:59
root / root
0644
synload.vim
1.938 KB
August 02 2022 16:56:59
root / root
0644
syntax.vim
1.199 KB
August 02 2022 16:56:59
root / root
0644
sysctl.vim
1.126 KB
August 02 2022 16:56:59
root / root
0644
systemd.vim
0.18 KB
August 02 2022 16:56:59
root / root
0644
systemverilog.vim
3.456 KB
August 02 2022 16:56:59
root / root
0644
tads.vim
6.701 KB
August 02 2022 16:56:59
root / root
0644
tags.vim
1.128 KB
August 02 2022 16:56:59
root / root
0644
tak.vim
2.852 KB
August 02 2022 16:56:59
root / root
0644
takcmp.vim
1.556 KB
August 02 2022 16:56:59
root / root
0644
takout.vim
1.953 KB
August 02 2022 16:56:59
root / root
0644
tap.vim
4.26 KB
August 02 2022 16:56:59
root / root
0644
tar.vim
0.364 KB
August 02 2022 16:56:59
root / root
0644
taskdata.vim
1.179 KB
August 02 2022 16:56:59
root / root
0644
taskedit.vim
1.104 KB
August 02 2022 16:56:59
root / root
0644
tasm.vim
5.539 KB
August 02 2022 16:56:59
root / root
0644
tcl.vim
16.881 KB
August 02 2022 16:56:59
root / root
0644
tcsh.vim
12.958 KB
August 02 2022 16:56:59
root / root
0644
teraterm.vim
4.822 KB
August 02 2022 16:56:59
root / root
0644
terminfo.vim
4.69 KB
August 02 2022 16:56:59
root / root
0644
tex.vim
65.126 KB
August 02 2022 16:56:59
root / root
0644
texinfo.vim
24.969 KB
August 02 2022 16:56:59
root / root
0644
texmf.vim
2.228 KB
August 02 2022 16:56:59
root / root
0644
tf.vim
6.742 KB
August 02 2022 16:56:59
root / root
0644
tidy.vim
5.788 KB
August 02 2022 16:56:59
root / root
0644
tilde.vim
1.502 KB
August 02 2022 16:56:59
root / root
0644
tli.vim
1.619 KB
August 02 2022 16:56:59
root / root
0644
tmux.vim
6.263 KB
August 02 2022 16:56:59
root / root
0644
tpp.vim
3.399 KB
August 02 2022 16:56:59
root / root
0644
trasys.vim
4.915 KB
August 02 2022 16:56:59
root / root
0644
treetop.vim
3.582 KB
August 02 2022 16:56:59
root / root
0644
trustees.vim
1.51 KB
August 02 2022 16:56:59
root / root
0644
tsalt.vim
8.13 KB
August 02 2022 16:56:59
root / root
0644
tsscl.vim
5 KB
August 02 2022 16:56:59
root / root
0644
tssgm.vim
2.722 KB
August 02 2022 16:56:59
root / root
0644
tssop.vim
1.743 KB
August 02 2022 16:56:59
root / root
0644
tt2.vim
7.737 KB
August 02 2022 16:56:59
root / root
0644
tt2html.vim
0.504 KB
August 02 2022 16:56:59
root / root
0644
tt2js.vim
0.51 KB
August 02 2022 16:56:59
root / root
0644
uc.vim
6.479 KB
August 02 2022 16:56:59
root / root
0644
udevconf.vim
1.198 KB
August 02 2022 16:56:59
root / root
0644
udevperm.vim
2.353 KB
August 02 2022 16:56:59
root / root
0644
udevrules.vim
6.797 KB
August 02 2022 16:56:59
root / root
0644
uil.vim
2.755 KB
August 02 2022 16:56:59
root / root
0644
updatedb.vim
1.191 KB
August 02 2022 16:56:59
root / root
0644
upstart.vim
3.077 KB
August 02 2022 16:56:59
root / root
0644
upstreamdat.vim
13.719 KB
August 02 2022 16:56:59
root / root
0644
upstreaminstalllog.vim
0.948 KB
August 02 2022 16:56:59
root / root
0644
upstreamlog.vim
2.559 KB
August 02 2022 16:56:59
root / root
0644
upstreamrpt.vim
13.864 KB
August 02 2022 16:56:59
root / root
0644
usserverlog.vim
3.045 KB
August 02 2022 16:56:59
root / root
0644
usw2kagtlog.vim
2.639 KB
August 02 2022 16:56:59
root / root
0644
valgrind.vim
3.174 KB
August 02 2022 16:56:59
root / root
0644
vb.vim
19.823 KB
August 02 2022 16:56:59
root / root
0644
vera.vim
19.094 KB
August 02 2022 16:56:59
root / root
0644
verilog.vim
4.937 KB
August 02 2022 16:56:59
root / root
0644
verilogams.vim
5.94 KB
August 02 2022 16:56:59
root / root
0644
vgrindefs.vim
1.186 KB
August 02 2022 16:56:59
root / root
0644
vhdl.vim
9.169 KB
August 02 2022 16:56:59
root / root
0644
vim.vim
66.621 KB
August 02 2022 16:56:59
root / root
0644
viminfo.vim
1.212 KB
August 02 2022 16:56:59
root / root
0644
virata.vim
11.341 KB
August 02 2022 16:56:59
root / root
0644
vmasm.vim
8.313 KB
August 02 2022 16:56:59
root / root
0644
voscm.vim
6.812 KB
August 02 2022 16:56:59
root / root
0644
vrml.vim
12.488 KB
August 02 2022 16:56:59
root / root
0644
vroom.vim
3.41 KB
August 02 2022 16:56:59
root / root
0644
vsejcl.vim
0.98 KB
August 02 2022 16:56:59
root / root
0644
wdiff.vim
0.699 KB
August 02 2022 16:56:59
root / root
0644
web.vim
1.088 KB
August 02 2022 16:56:59
root / root
0644
webmacro.vim
3.057 KB
August 02 2022 16:56:59
root / root
0644
wget.vim
3.868 KB
August 02 2022 16:56:59
root / root
0644
whitespace.vim
0.349 KB
August 02 2022 16:56:59
root / root
0644
winbatch.vim
11.867 KB
August 02 2022 16:56:59
root / root
0644
wml.vim
5.597 KB
August 02 2022 16:56:59
root / root
0644
wsh.vim
1.213 KB
August 02 2022 16:56:59
root / root
0644
wsml.vim
5.273 KB
August 02 2022 16:56:59
root / root
0644
wvdial.vim
1.067 KB
August 02 2022 16:56:59
root / root
0644
xbl.vim
0.555 KB
August 02 2022 16:56:59
root / root
0644
xdefaults.vim
5.749 KB
August 02 2022 16:56:59
root / root
0644
xf86conf.vim
14.38 KB
August 02 2022 16:56:59
root / root
0644
xhtml.vim
0.182 KB
August 02 2022 16:56:59
root / root
0644
xinetd.vim
13.875 KB
August 02 2022 16:56:59
root / root
0644
xkb.vim
3.242 KB
August 02 2022 16:56:59
root / root
0644
xmath.vim
10.575 KB
August 02 2022 16:56:59
root / root
0644
xml.vim
8.407 KB
August 02 2022 16:56:59
root / root
0644
xmodmap.vim
45.421 KB
August 02 2022 16:56:59
root / root
0644
xpm.vim
4.3 KB
August 02 2022 16:56:59
root / root
0644
xpm2.vim
4.587 KB
August 02 2022 16:56:59
root / root
0644
xquery.vim
7.022 KB
August 02 2022 16:56:59
root / root
0644
xs.vim
240.962 KB
August 02 2022 16:56:59
root / root
0644
xsd.vim
2.075 KB
August 02 2022 16:56:59
root / root
0644
xslt.vim
2.115 KB
August 02 2022 16:56:59
root / root
0644
xxd.vim
0.748 KB
August 02 2022 16:56:59
root / root
0644
yacc.vim
5.384 KB
August 02 2022 16:56:59
root / root
0644
yaml.vim
12.563 KB
August 02 2022 16:56:59
root / root
0644
z8a.vim
2.826 KB
August 02 2022 16:56:59
root / root
0644
zimbu.vim
6.295 KB
August 02 2022 16:56:59
root / root
0644
zsh.vim
22.938 KB
August 02 2022 16:56:59
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF