GRAYBYTE WORDPRESS FILE MANAGER6134

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//perl.vim
" Vim syntax file
" Language:      Perl 5
" Maintainer:    vim-perl <vim-perl@googlegroups.com>
" Homepage:      http://github.com/vim-perl/vim-perl/tree/master
" Bugs/requests: http://github.com/vim-perl/vim-perl/issues
" Last Change:   2017-09-12
" Contributors:  Andy Lester <andy@petdance.com>
"                Hinrik Örn Sigurðsson <hinrik.sig@gmail.com>
"                Lukas Mai <l.mai.web.de>
"                Nick Hibma <nick@van-laarhoven.org>
"                Sonia Heimann <niania@netsurf.org>
"                Rob Hoelz <rob@hoelz.ro>
"                and many others.
"
" Please download the most recent version first, before mailing
" any comments.
"
" The following parameters are available for tuning the
" perl syntax highlighting, with defaults given:
"
" let perl_include_pod = 1
" unlet perl_no_scope_in_variables
" unlet perl_no_extended_vars
" unlet perl_string_as_statement
" unlet perl_no_sync_on_sub
" unlet perl_no_sync_on_global_var
" let perl_sync_dist = 100
" unlet perl_fold
" unlet perl_fold_blocks
" unlet perl_nofold_packages
" unlet perl_nofold_subs
" unlet perl_fold_anonymous_subs
" unlet perl_no_subprototype_error

if exists("b:current_syntax")
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

" POD starts with ^=<word> and ends with ^=cut

if !exists("perl_include_pod") || perl_include_pod == 1
  " Include a while extra syntax file
  syn include @Pod syntax/pod.vim
  unlet b:current_syntax
  if exists("perl_fold")
    syn region perlPOD start="^=[a-z]" end="^=cut" contains=@Pod,@Spell,perlTodo keepend fold extend
    syn region perlPOD start="^=cut" end="^=cut" contains=perlTodo keepend fold extend
  else
    syn region perlPOD start="^=[a-z]" end="^=cut" contains=@Pod,@Spell,perlTodo keepend
    syn region perlPOD start="^=cut" end="^=cut" contains=perlTodo keepend
  endif
else
  " Use only the bare minimum of rules
  if exists("perl_fold")
    syn region perlPOD start="^=[a-z]" end="^=cut" fold
  else
    syn region perlPOD start="^=[a-z]" end="^=cut"
  endif
endif


syn cluster perlTop		contains=TOP

syn region perlBraces start="{" end="}" transparent extend

" All keywords
"
syn match perlConditional		"\<\%(if\|elsif\|unless\|given\|when\|default\)\>"
syn match perlConditional		"\<else\%(\%(\_s\*if\>\)\|\>\)" contains=perlElseIfError skipwhite skipnl skipempty
syn match perlRepeat			"\<\%(while\|for\%(each\)\=\|do\|until\|continue\)\>"
syn match perlOperator			"\<\%(defined\|undef\|eq\|ne\|[gl][et]\|cmp\|not\|and\|or\|xor\|not\|bless\|ref\|do\)\>"
" for some reason, adding this as the nextgroup for perlControl fixes BEGIN
" folding issues...
syn match perlFakeGroup 		"" contained
syn match perlControl			"\<\%(BEGIN\|CHECK\|INIT\|END\|UNITCHECK\)\>\_s*" nextgroup=perlFakeGroup

syn match perlStatementStorage		"\<\%(my\|our\|local\|state\)\>"
syn match perlStatementControl		"\<\%(return\|last\|next\|redo\|goto\|break\)\>"
syn match perlStatementScalar		"\<\%(chom\=p\|chr\|crypt\|r\=index\|lc\%(first\)\=\|length\|ord\|pack\|sprintf\|substr\|fc\|uc\%(first\)\=\)\>"
syn match perlStatementRegexp		"\<\%(pos\|quotemeta\|split\|study\)\>"
syn match perlStatementNumeric		"\<\%(abs\|atan2\|cos\|exp\|hex\|int\|log\|oct\|rand\|sin\|sqrt\|srand\)\>"
syn match perlStatementList		"\<\%(splice\|unshift\|shift\|push\|pop\|join\|reverse\|grep\|map\|sort\|unpack\)\>"
syn match perlStatementHash		"\<\%(delete\|each\|exists\|keys\|values\)\>"
syn match perlStatementIOfunc		"\<\%(syscall\|dbmopen\|dbmclose\)\>"
syn match perlStatementFiledesc		"\<\%(binmode\|close\%(dir\)\=\|eof\|fileno\|getc\|lstat\|printf\=\|read\%(dir\|line\|pipe\)\|rewinddir\|say\|select\|stat\|tell\%(dir\)\=\|write\)\>" nextgroup=perlFiledescStatementNocomma skipwhite
syn match perlStatementFiledesc		"\<\%(fcntl\|flock\|ioctl\|open\%(dir\)\=\|read\|seek\%(dir\)\=\|sys\%(open\|read\|seek\|write\)\|truncate\)\>" nextgroup=perlFiledescStatementComma skipwhite
syn match perlStatementVector		"\<vec\>"
syn match perlStatementFiles		"\<\%(ch\%(dir\|mod\|own\|root\)\|glob\|link\|mkdir\|readlink\|rename\|rmdir\|symlink\|umask\|unlink\|utime\)\>"
syn match perlStatementFiles		"-[rwxoRWXOezsfdlpSbctugkTBMAC]\>"
syn match perlStatementFlow		"\<\%(caller\|die\|dump\|eval\|exit\|wantarray\|evalbytes\)\>"
syn match perlStatementInclude		"\<\%(require\|import\|unimport\)\>"
syn match perlStatementInclude		"\<\%(use\|no\)\s\+\%(\%(attributes\|attrs\|autodie\|autouse\|parent\|base\|big\%(int\|num\|rat\)\|blib\|bytes\|charnames\|constant\|diagnostics\|encoding\%(::warnings\)\=\|feature\|fields\|filetest\|if\|integer\|less\|lib\|locale\|mro\|open\|ops\|overload\|overloading\|re\|sigtrap\|sort\|strict\|subs\|threads\%(::shared\)\=\|utf8\|vars\|version\|vmsish\|warnings\%(::register\)\=\)\>\)\="
syn match perlStatementProc		"\<\%(alarm\|exec\|fork\|get\%(pgrp\|ppid\|priority\)\|kill\|pipe\|set\%(pgrp\|priority\)\|sleep\|system\|times\|wait\%(pid\)\=\)\>"
syn match perlStatementSocket		"\<\%(accept\|bind\|connect\|get\%(peername\|sock\%(name\|opt\)\)\|listen\|recv\|send\|setsockopt\|shutdown\|socket\%(pair\)\=\)\>"
syn match perlStatementIPC		"\<\%(msg\%(ctl\|get\|rcv\|snd\)\|sem\%(ctl\|get\|op\)\|shm\%(ctl\|get\|read\|write\)\)\>"
syn match perlStatementNetwork		"\<\%(\%(end\|[gs]et\)\%(host\|net\|proto\|serv\)ent\|get\%(\%(host\|net\)by\%(addr\|name\)\|protoby\%(name\|number\)\|servby\%(name\|port\)\)\)\>"
syn match perlStatementPword		"\<\%(get\%(pw\%(uid\|nam\)\|gr\%(gid\|nam\)\|login\)\)\|\%(end\|[gs]et\)\%(pw\|gr\)ent\>"
syn match perlStatementTime		"\<\%(gmtime\|localtime\|time\)\>"

syn match perlStatementMisc		"\<\%(warn\|format\|formline\|reset\|scalar\|prototype\|lock\|tied\=\|untie\)\>"

syn keyword perlTodo			TODO TODO: TBD TBD: FIXME FIXME: XXX XXX: NOTE NOTE: contained

syn region perlStatementIndirObjWrap   matchgroup=perlStatementIndirObj start="\%(\<\%(map\|grep\|sort\|printf\=\|say\|system\|exec\)\>\s*\)\@<={" end="}" transparent extend

syn match perlLabel      "^\s*\h\w*\s*::\@!\%(\<v\d\+\s*:\)\@<!"

" Perl Identifiers.
"
" Should be cleaned up to better handle identifiers in particular situations
" (in hash keys for example)
"
" Plain identifiers: $foo, @foo, $#foo, %foo, &foo and dereferences $$foo, @$foo, etc.
" We do not process complex things such as @{${"foo"}}. Too complicated, and
" too slow. And what is after the -> is *not* considered as part of the
" variable - there again, too complicated and too slow.

" Special variables first ($^A, ...) and ($|, $', ...)
syn match  perlVarPlain		 "$^[ACDEFHILMNOPRSTVWX]\="
syn match  perlVarPlain		 "$[\\\"\[\]'&`+*.,;=%~!?@#$<>(-]"
syn match  perlVarPlain		 "@[-+]"
syn match  perlVarPlain		 "$\%(0\|[1-9]\d*\)"
" Same as above, but avoids confusion in $::foo (equivalent to $main::foo)
syn match  perlVarPlain		 "$::\@!"
" These variables are not recognized within matches.
syn match  perlVarNotInMatches	 "$[|)]"
" This variable is not recognized within matches delimited by m//.
syn match  perlVarSlash		 "$/"

" And plain identifiers
syn match  perlPackageRef	 "[$@#%*&]\%(\%(::\|'\)\=\I\i*\%(\%(::\|'\)\I\i*\)*\)\=\%(::\|'\)\I"ms=s+1,me=e-1 contained

" To not highlight packages in variables as a scope reference - i.e. in
" $pack::var, pack:: is a scope, just set "perl_no_scope_in_variables"
" If you don't want complex things like @{${"foo"}} to be processed,
" just set the variable "perl_no_extended_vars"...

if !exists("perl_no_scope_in_variables")
  syn match  perlVarPlain       "\%([@$]\|\$#\)\$*\%(\I\i*\)\=\%(\%(::\|'\)\I\i*\)*\%(::\|\i\@<=\)" contains=perlPackageRef nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref
  syn match  perlVarPlain2                   "%\$*\%(\I\i*\)\=\%(\%(::\|'\)\I\i*\)*\%(::\|\i\@<=\)" contains=perlPackageRef nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref
  syn match  perlFunctionName                "&\$*\%(\I\i*\)\=\%(\%(::\|'\)\I\i*\)*\%(::\|\i\@<=\)" contains=perlPackageRef nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref
else
  syn match  perlVarPlain       "\%([@$]\|\$#\)\$*\%(\I\i*\)\=\%(\%(::\|'\)\I\i*\)*\%(::\|\i\@<=\)" nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref
  syn match  perlVarPlain2                   "%\$*\%(\I\i*\)\=\%(\%(::\|'\)\I\i*\)*\%(::\|\i\@<=\)" nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref
  syn match  perlFunctionName                "&\$*\%(\I\i*\)\=\%(\%(::\|'\)\I\i*\)*\%(::\|\i\@<=\)" nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref
endif

syn match  perlVarPlain2	 "%[-+]"

if !exists("perl_no_extended_vars")
  syn cluster perlExpr		contains=perlStatementIndirObjWrap,perlStatementScalar,perlStatementRegexp,perlStatementNumeric,perlStatementList,perlStatementHash,perlStatementFiles,perlStatementTime,perlStatementMisc,perlVarPlain,perlVarPlain2,perlVarNotInMatches,perlVarSlash,perlVarBlock,perlVarBlock2,perlShellCommand,perlFloat,perlNumber,perlStringUnexpanded,perlString,perlQQ,perlArrow,perlBraces
  syn region perlArrow		matchgroup=perlArrow start="->\s*(" end=")" contains=@perlExpr nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref contained
  syn region perlArrow		matchgroup=perlArrow start="->\s*\[" end="\]" contains=@perlExpr nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref contained
  syn region perlArrow		matchgroup=perlArrow start="->\s*{" end="}" contains=@perlExpr nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref contained
  syn match  perlArrow		"->\s*{\s*\I\i*\s*}" contains=perlVarSimpleMemberName nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref contained
  syn region perlArrow		matchgroup=perlArrow start="->\s*\$*\I\i*\s*(" end=")" contains=@perlExpr nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref contained
  syn region perlVarBlock	matchgroup=perlVarPlain start="\%($#\|[$@]\)\$*{" skip="\\}" end=+}\|\%(\%(<<\%('\|"\)\?\)\@=\)+ contains=@perlExpr nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref extend
  syn region perlVarBlock2	matchgroup=perlVarPlain start="[%&*]\$*{" skip="\\}" end=+}\|\%(\%(<<\%('\|"\)\?\)\@=\)+ contains=@perlExpr nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref extend
  syn match  perlVarPlain2	"[%&*]\$*{\I\i*}" nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref extend
  syn match  perlVarPlain	"\%(\$#\|[@$]\)\$*{\I\i*}" nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref extend
  syn region perlVarMember	matchgroup=perlVarPlain start="\%(->\)\={" skip="\\}" end="}" contained contains=@perlExpr nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref extend
  syn match  perlVarSimpleMember	"\%(->\)\={\s*\I\i*\s*}" nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref contains=perlVarSimpleMemberName contained extend
  syn match  perlVarSimpleMemberName	"\I\i*" contained
  syn region perlVarMember	matchgroup=perlVarPlain start="\%(->\)\=\[" skip="\\]" end="]" contained contains=@perlExpr nextgroup=perlVarMember,perlVarSimpleMember,perlMethod,perlPostDeref extend
  syn match perlPackageConst	"__PACKAGE__" nextgroup=perlMethod,perlPostDeref
  syn match  perlMethod		"->\$*\I\i*" contained nextgroup=perlVarSimpleMember,perlVarMember,perlMethod,perlPostDeref
  syn match  perlPostDeref	"->\%($#\|[$@%&*]\)\*" contained nextgroup=perlVarSimpleMember,perlVarMember,perlMethod,perlPostDeref
  syn region  perlPostDeref	start="->\%($#\|[$@%&*]\)\[" skip="\\]" end="]" contained contains=@perlExpr nextgroup=perlVarSimpleMember,perlVarMember,perlMethod,perlPostDeref
  syn region  perlPostDeref	matchgroup=perlPostDeref start="->\%($#\|[$@%&*]\){" skip="\\}" end="}" contained contains=@perlExpr nextgroup=perlVarSimpleMember,perlVarMember,perlMethod,perlPostDeref
endif

" File Descriptors
syn match  perlFiledescRead	"<\h\w*>"

syn match  perlFiledescStatementComma	"(\=\s*\<\u\w*\>\s*,"me=e-1 transparent contained contains=perlFiledescStatement
syn match  perlFiledescStatementNocomma "(\=\s*\<\u\w*\>\s*[^, \t]"me=e-1 transparent contained contains=perlFiledescStatement

syn match  perlFiledescStatement	"\<\u\w*\>" contained

" Special characters in strings and matches
syn match  perlSpecialString	"\\\%(\o\{1,3}\|x\%({\x\+}\|\x\{1,2}\)\|c.\|[^cx]\)" contained extend
syn match  perlSpecialStringU2	"\\." extend contained contains=NONE
syn match  perlSpecialStringU	"\\\\" contained
syn match  perlSpecialMatch	"\\[1-9]" contained extend
syn match  perlSpecialMatch	"\\g\%(\d\+\|{\%(-\=\d\+\|\h\w*\)}\)" contained
syn match  perlSpecialMatch	"\\k\%(<\h\w*>\|'\h\w*'\)" contained
syn match  perlSpecialMatch	"{\d\+\%(,\%(\d\+\)\=\)\=}" contained
syn match  perlSpecialMatch	"\[[]-]\=[^\[\]]*[]-]\=\]" contained extend
syn match  perlSpecialMatch	"[+*()?.]" contained
syn match  perlSpecialMatch	"(?[#:=!]" contained
syn match  perlSpecialMatch	"(?[impsx]*\%(-[imsx]\+\)\=)" contained
syn match  perlSpecialMatch	"(?\%([-+]\=\d\+\|R\))" contained
syn match  perlSpecialMatch	"(?\%(&\|P[>=]\)\h\w*)" contained
syn match  perlSpecialMatch	"(\*\%(\%(PRUNE\|SKIP\|THEN\)\%(:[^)]*\)\=\|\%(MARK\|\):[^)]*\|COMMIT\|F\%(AIL\)\=\|ACCEPT\))" contained

" Possible errors
"
" Highlight lines with only whitespace (only in blank delimited here documents) as errors
syn match  perlNotEmptyLine	"^\s\+$" contained
" Highlight "} else if (...) {", it should be "} else { if (...) { " or "} elsif (...) {"
syn match perlElseIfError	"else\_s*if" containedin=perlConditional
syn keyword perlElseIfError	elseif containedin=perlConditional

" Variable interpolation
"
" These items are interpolated inside "" strings and similar constructs.
syn cluster perlInterpDQ	contains=perlSpecialString,perlVarPlain,perlVarNotInMatches,perlVarSlash,perlVarBlock
" These items are interpolated inside '' strings and similar constructs.
syn cluster perlInterpSQ	contains=perlSpecialStringU,perlSpecialStringU2
" These items are interpolated inside m// matches and s/// substitutions.
syn cluster perlInterpSlash	contains=perlSpecialString,perlSpecialMatch,perlVarPlain,perlVarBlock
" These items are interpolated inside m## matches and s### substitutions.
syn cluster perlInterpMatch	contains=@perlInterpSlash,perlVarSlash

" Shell commands
syn region  perlShellCommand	matchgroup=perlMatchStartEnd start="`" end="`" contains=@perlInterpDQ keepend

" Constants
"
" Numbers
syn match  perlNumber	"\<\%(0\%(x\x[[:xdigit:]_]*\|b[01][01_]*\|\o[0-7_]*\|\)\|[1-9][[:digit:]_]*\)\>"
syn match  perlFloat	"\<\d[[:digit:]_]*[eE][\-+]\=\d\+"
syn match  perlFloat	"\<\d[[:digit:]_]*\.[[:digit:]_]*\%([eE][\-+]\=\d\+\)\="
syn match  perlFloat    "\.[[:digit:]][[:digit:]_]*\%([eE][\-+]\=\d\+\)\="

syn match  perlString	"\<\%(v\d\+\%(\.\d\+\)*\|\d\+\%(\.\d\+\)\{2,}\)\>" contains=perlVStringV
syn match  perlVStringV	"\<v" contained


syn region perlParensSQ		start=+(+ end=+)+ extend contained contains=perlParensSQ,@perlInterpSQ keepend
syn region perlBracketsSQ	start=+\[+ end=+\]+ extend contained contains=perlBracketsSQ,@perlInterpSQ keepend
syn region perlBracesSQ		start=+{+ end=+}+ extend contained contains=perlBracesSQ,@perlInterpSQ keepend
syn region perlAnglesSQ		start=+<+ end=+>+ extend contained contains=perlAnglesSQ,@perlInterpSQ keepend

syn region perlParensDQ		start=+(+ end=+)+ extend contained contains=perlParensDQ,@perlInterpDQ keepend
syn region perlBracketsDQ	start=+\[+ end=+\]+ extend contained contains=perlBracketsDQ,@perlInterpDQ keepend
syn region perlBracesDQ		start=+{+ end=+}+ extend contained contains=perlBracesDQ,@perlInterpDQ keepend
syn region perlAnglesDQ		start=+<+ end=+>+ extend contained contains=perlAnglesDQ,@perlInterpDQ keepend


" Simple version of searches and matches
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!m\>\s*\z([^[:space:]'([{<#]\)+ end=+\z1[msixpodualgcn]*+ contains=@perlInterpMatch keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!m#+ end=+#[msixpodualgcn]*+ contains=@perlInterpMatch keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!m\s*'+ end=+'[msixpodualgcn]*+ contains=@perlInterpSQ keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!m\s*/+ end=+/[msixpodualgcn]*+ contains=@perlInterpSlash keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!m\s*(+ end=+)[msixpodualgcn]*+ contains=@perlInterpMatch,perlParensDQ keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!m\s*{+ end=+}[msixpodualgcn]*+ contains=@perlInterpMatch,perlBracesDQ extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!m\s*<+ end=+>[msixpodualgcn]*+ contains=@perlInterpMatch,perlAnglesDQ keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!m\s*\[+ end=+\][msixpodualgcn]*+ contains=@perlInterpMatch,perlBracketsDQ keepend extend

" Below some hacks to recognise the // variant. This is virtually impossible to catch in all
" cases as the / is used in so many other ways, but these should be the most obvious ones.
syn region perlMatch	matchgroup=perlMatchStartEnd start="\%([$@%&*]\@<!\%(\<split\|\<while\|\<if\|\<unless\|\.\.\|[-+*!~(\[{=]\)\s*\)\@<=/\%(/=\)\@!" start=+^/\%(/=\)\@!+ start=+\s\@<=/\%(/=\)\@![^[:space:][:digit:]$@%=]\@=\%(/\_s*\%([([{$@%&*[:digit:]"'`]\|\_s\w\|[[:upper:]_abd-fhjklnqrt-wyz]\)\)\@!+ skip=+\\/+ end=+/[msixpodualgcn]*+ contains=@perlInterpSlash extend


" Substitutions
" perlMatch is the first part, perlSubstitution* is the substitution part
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!s\>\s*\z([^[:space:]'([{<#]\)+ end=+\z1+me=e-1 contains=@perlInterpMatch nextgroup=perlSubstitutionGQQ keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!s\s*'+  end=+'+me=e-1 contains=@perlInterpSQ nextgroup=perlSubstitutionSQ keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!s\s*/+  end=+/+me=e-1 contains=@perlInterpSlash nextgroup=perlSubstitutionGQQ keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!s#+  end=+#+me=e-1 contains=@perlInterpMatch nextgroup=perlSubstitutionGQQ keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!s\s*(+ end=+)+ contains=@perlInterpMatch,perlParensDQ nextgroup=perlSubstitutionGQQ skipwhite skipempty skipnl keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!s\s*<+ end=+>+ contains=@perlInterpMatch,perlAnglesDQ nextgroup=perlSubstitutionGQQ skipwhite skipempty skipnl keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!s\s*\[+ end=+\]+ contains=@perlInterpMatch,perlBracketsDQ nextgroup=perlSubstitutionGQQ skipwhite skipempty skipnl keepend extend
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!s\s*{+ end=+}+ contains=@perlInterpMatch,perlBracesDQ nextgroup=perlSubstitutionGQQ skipwhite skipempty skipnl keepend extend
syn region perlSubstitutionGQQ		matchgroup=perlMatchStartEnd start=+\z([^[:space:]'([{<]\)+ end=+\z1[msixpodualgcern]*+ keepend contained contains=@perlInterpDQ extend
syn region perlSubstitutionGQQ		matchgroup=perlMatchStartEnd start=+(+ end=+)[msixpodualgcern]*+ contained contains=@perlInterpDQ,perlParensDQ keepend extend
syn region perlSubstitutionGQQ		matchgroup=perlMatchStartEnd start=+\[+ end=+\][msixpodualgcern]*+ contained contains=@perlInterpDQ,perlBracketsDQ keepend extend
syn region perlSubstitutionGQQ		matchgroup=perlMatchStartEnd start=+{+ end=+}[msixpodualgcern]*+ contained contains=@perlInterpDQ,perlBracesDQ keepend extend extend
syn region perlSubstitutionGQQ		matchgroup=perlMatchStartEnd start=+<+ end=+>[msixpodualgcern]*+ contained contains=@perlInterpDQ,perlAnglesDQ keepend extend
syn region perlSubstitutionSQ		matchgroup=perlMatchStartEnd start=+'+  end=+'[msixpodualgcern]*+ contained contains=@perlInterpSQ keepend extend

" Translations
" perlMatch is the first part, perlTranslation* is the second, translator part.
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!\%(tr\|y\)\>\s*\z([^[:space:]([{<#]\)+ end=+\z1+me=e-1 contains=@perlInterpSQ nextgroup=perlTranslationGQ
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!\%(tr\|y\)#+ end=+#+me=e-1 contains=@perlInterpSQ nextgroup=perlTranslationGQ
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!\%(tr\|y\)\s*\[+ end=+\]+ contains=@perlInterpSQ,perlBracketsSQ nextgroup=perlTranslationGQ skipwhite skipempty skipnl
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!\%(tr\|y\)\s*(+ end=+)+ contains=@perlInterpSQ,perlParensSQ nextgroup=perlTranslationGQ skipwhite skipempty skipnl
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!\%(tr\|y\)\s*<+ end=+>+ contains=@perlInterpSQ,perlAnglesSQ nextgroup=perlTranslationGQ skipwhite skipempty skipnl
syn region perlMatch	matchgroup=perlMatchStartEnd start=+\<\%(::\|'\|->\)\@<!\%(tr\|y\)\s*{+ end=+}+ contains=@perlInterpSQ,perlBracesSQ nextgroup=perlTranslationGQ skipwhite skipempty skipnl
syn region perlTranslationGQ		matchgroup=perlMatchStartEnd start=+\z([^[:space:]([{<]\)+ end=+\z1[cdsr]*+ contained
syn region perlTranslationGQ		matchgroup=perlMatchStartEnd start=+(+ end=+)[cdsr]*+ contains=perlParensSQ contained
syn region perlTranslationGQ		matchgroup=perlMatchStartEnd start=+\[+ end=+\][cdsr]*+ contains=perlBracketsSQ contained
syn region perlTranslationGQ		matchgroup=perlMatchStartEnd start=+{+ end=+}[cdsr]*+ contains=perlBracesSQ contained
syn region perlTranslationGQ		matchgroup=perlMatchStartEnd start=+<+ end=+>[cdsr]*+ contains=perlAnglesSQ contained


" Strings and q, qq, qw and qr expressions

syn region perlStringUnexpanded	matchgroup=perlStringStartEnd start="'" end="'" contains=@perlInterpSQ keepend extend
syn region perlString		matchgroup=perlStringStartEnd start=+"+  end=+"+ contains=@perlInterpDQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q\>\s*\z([^[:space:]#([{<]\)+ end=+\z1+ contains=@perlInterpSQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q#+ end=+#+ contains=@perlInterpSQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q\s*(+ end=+)+ contains=@perlInterpSQ,perlParensSQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q\s*\[+ end=+\]+ contains=@perlInterpSQ,perlBracketsSQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q\s*{+ end=+}+ contains=@perlInterpSQ,perlBracesSQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q\s*<+ end=+>+ contains=@perlInterpSQ,perlAnglesSQ keepend extend

syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q[qx]\>\s*\z([^[:space:]#([{<]\)+ end=+\z1+ contains=@perlInterpDQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q[qx]#+ end=+#+ contains=@perlInterpDQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q[qx]\s*(+ end=+)+ contains=@perlInterpDQ,perlParensDQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q[qx]\s*\[+ end=+\]+ contains=@perlInterpDQ,perlBracketsDQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q[qx]\s*{+ end=+}+ contains=@perlInterpDQ,perlBracesDQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!q[qx]\s*<+ end=+>+ contains=@perlInterpDQ,perlAnglesDQ keepend extend

syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qw\s*\z([^[:space:]#([{<]\)+  end=+\z1+ contains=@perlInterpSQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qw#+  end=+#+ contains=@perlInterpSQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qw\s*(+  end=+)+ contains=@perlInterpSQ,perlParensSQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qw\s*\[+  end=+\]+ contains=@perlInterpSQ,perlBracketsSQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qw\s*{+  end=+}+ contains=@perlInterpSQ,perlBracesSQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qw\s*<+  end=+>+ contains=@perlInterpSQ,perlAnglesSQ keepend extend

syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qr\>\s*\z([^[:space:]#([{<'/]\)+  end=+\z1[imosxdual]*+ contains=@perlInterpMatch keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qr\s*/+  end=+/[imosxdual]*+ contains=@perlInterpSlash keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qr#+  end=+#[imosxdual]*+ contains=@perlInterpMatch keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qr\s*'+  end=+'[imosxdual]*+ contains=@perlInterpSQ keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qr\s*(+  end=+)[imosxdual]*+ contains=@perlInterpMatch,perlParensDQ keepend extend

" A special case for qr{}, qr<> and qr[] which allows for comments and extra whitespace in the pattern
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qr\s*{+  end=+}[imosxdual]*+ contains=@perlInterpMatch,perlBracesDQ,perlComment keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qr\s*<+  end=+>[imosxdual]*+ contains=@perlInterpMatch,perlAnglesDQ,perlComment keepend extend
syn region perlQQ		matchgroup=perlStringStartEnd start=+\<\%(::\|'\|->\)\@<!qr\s*\[+  end=+\][imosxdual]*+ contains=@perlInterpMatch,perlBracketsDQ,perlComment keepend extend

" Constructs such as print <<EOF [...] EOF, 'here' documents
"
" XXX Any statements after the identifier are in perlString colour (i.e.
" 'if $a' in 'print <<EOF if $a'). This is almost impossible to get right it
" seems due to the 'auto-extending nature' of regions.
syn region perlHereDocStart	matchgroup=perlStringStartEnd start=+<<\z(\I\i*\)+  end=+$+     contains=@perlTop oneline
syn region perlHereDocStart	matchgroup=perlStringStartEnd start=+<<\s*"\z([^\\"]*\%(\\.[^\\"]*\)*\)"+ end=+$+ contains=@perlTop oneline
syn region perlHereDocStart	matchgroup=perlStringStartEnd start=+<<\s*'\z([^\\']*\%(\\.[^\\']*\)*\)'+ end=+$+ contains=@perlTop oneline
syn region perlHereDocStart	matchgroup=perlStringStartEnd start=+<<\s*""+       end=+$+     contains=@perlTop oneline
syn region perlHereDocStart	matchgroup=perlStringStartEnd start=+<<\s*''+       end=+$+     contains=@perlTop oneline
if exists("perl_fold")
  syn region perlHereDoc	start=+<<\z(\I\i*\)+ matchgroup=perlStringStartEnd      end=+^\z1$+ contains=perlHereDocStart,@perlInterpDQ fold extend
  syn region perlHereDoc	start=+<<\s*"\z([^\\"]*\%(\\.[^\\"]*\)*\)"+ matchgroup=perlStringStartEnd end=+^\z1$+ contains=perlHereDocStart,@perlInterpDQ fold extend
  syn region perlHereDoc	start=+<<\s*'\z([^\\']*\%(\\.[^\\']*\)*\)'+ matchgroup=perlStringStartEnd end=+^\z1$+ contains=perlHereDocStart,@perlInterpSQ fold extend
  syn region perlHereDoc	start=+<<\s*""+ matchgroup=perlStringStartEnd           end=+^$+    contains=perlHereDocStart,@perlInterpDQ,perlNotEmptyLine fold extend
  syn region perlHereDoc	start=+<<\s*''+ matchgroup=perlStringStartEnd           end=+^$+    contains=perlHereDocStart,@perlInterpSQ,perlNotEmptyLine fold extend
  syn region perlAutoload	matchgroup=perlStringStartEnd start=+<<\s*\(['"]\=\)\z(END_\%(SUB\|OF_FUNC\|OF_AUTOLOAD\)\)\1+ end=+^\z1$+ contains=ALL fold extend
else
  syn region perlHereDoc	start=+<<\z(\I\i*\)+ matchgroup=perlStringStartEnd      end=+^\z1$+ contains=perlHereDocStart,@perlInterpDQ
  syn region perlHereDoc	start=+<<\s*"\z([^\\"]*\%(\\.[^\\"]*\)*\)"+ matchgroup=perlStringStartEnd end=+^\z1$+ contains=perlHereDocStart,@perlInterpDQ
  syn region perlHereDoc	start=+<<\s*'\z([^\\']*\%(\\.[^\\']*\)*\)'+ matchgroup=perlStringStartEnd end=+^\z1$+ contains=perlHereDocStart,@perlInterpSQ
  syn region perlHereDoc	start=+<<\s*""+ matchgroup=perlStringStartEnd           end=+^$+    contains=perlHereDocStart,@perlInterpDQ,perlNotEmptyLine
  syn region perlHereDoc	start=+<<\s*''+ matchgroup=perlStringStartEnd           end=+^$+    contains=perlHereDocStart,@perlInterpSQ,perlNotEmptyLine
  syn region perlAutoload	matchgroup=perlStringStartEnd start=+<<\s*\(['"]\=\)\z(END_\%(SUB\|OF_FUNC\|OF_AUTOLOAD\)\)\1+ end=+^\z1$+ contains=ALL
endif


" Class declarations
"
syn match   perlPackageDecl		"\<package\s\+\%(\h\|::\)\%(\w\|::\)*" contains=perlStatementPackage
syn keyword perlStatementPackage	package contained

" Functions
"       sub [name] [(prototype)] {
"
syn match perlSubError "[^[:space:];{#]" contained
syn match perlSubAttributesCont "\h\w*\_s*\%(:\_s*\)\=" nextgroup=@perlSubAttrMaybe contained
syn region perlSubAttributesCont matchgroup=perlSubAttributesCont start="\h\w*(" end=")\_s*\%(:\_s*\)\=" nextgroup=@perlSubAttrMaybe contained contains=@perlInterpSQ,perlParensSQ
syn cluster perlSubAttrMaybe contains=perlSubAttributesCont,perlSubError,perlFakeGroup
syn match perlSubAttributes "" contained nextgroup=perlSubError
syn match perlSubAttributes ":\_s*" contained nextgroup=@perlSubAttrMaybe
if get(g:, "perl_sub_signatures", 0)
    syn match perlSignature +(\_[^)]*)\_s*+ nextgroup=perlSubAttributes,perlComment contained
else
    syn match perlSubPrototypeError "(\%(\_s*\%(\%(\\\%([$@%&*]\|\[[$@%&*]\+\]\)\|[$&*]\|[@%]\%(\_s*)\)\@=\|;\%(\_s*[)$@%&*\\]\)\@=\|_\%(\_s*[);]\)\@=\)\_s*\)*\)\@>\zs\_[^)]\+" contained
    syn match perlSubPrototype +(\_[^)]*)\_s*+ nextgroup=perlSubAttributes,perlComment contained contains=perlSubPrototypeError
endif

syn match perlSubName +\%(\h\|::\|'\w\)\%(\w\|::\|'\w\)*\_s*\|+ contained nextgroup=perlSubPrototype,perlSignature,perlSubAttributes,perlComment

syn match perlFunction +\<sub\>\_s*+ nextgroup=perlSubName

" The => operator forces a bareword to the left of it to be interpreted as
" a string
syn match  perlString "\I\@<!-\?\I\i*\%(\s*=>\)\@="

" All other # are comments, except ^#!
syn match  perlComment		"#.*" contains=perlTodo,@Spell extend
syn match  perlSharpBang	"^#!.*"

" Formats
syn region perlFormat		matchgroup=perlStatementIOFunc start="^\s*\<format\s\+\k\+\s*=\s*$"rs=s+6 end="^\s*\.\s*$" contains=perlFormatName,perlFormatField,perlVarPlain,perlVarPlain2
syn match  perlFormatName	"format\s\+\k\+\s*="lc=7,me=e-1 contained
syn match  perlFormatField	"[@^][|<>~]\+\%(\.\.\.\)\=" contained
syn match  perlFormatField	"[@^]#[#.]*" contained
syn match  perlFormatField	"@\*" contained
syn match  perlFormatField	"@[^A-Za-z_|<>~#*]"me=e-1 contained
syn match  perlFormatField	"@$" contained

" __END__ and __DATA__ clauses
if exists("perl_fold")
  syntax region perlDATA		start="^__DATA__$" skip="." end="." contains=@perlDATA fold
  syntax region perlDATA		start="^__END__$" skip="." end="." contains=perlPOD,@perlDATA fold
else
  syntax region perlDATA		start="^__DATA__$" skip="." end="." contains=@perlDATA
  syntax region perlDATA		start="^__END__$" skip="." end="." contains=perlPOD,@perlDATA
endif

"
" Folding

if exists("perl_fold")
  " Note: this bit must come before the actual highlighting of the "package"
  " keyword, otherwise this will screw up Pod lines that match /^package/
  if !exists("perl_nofold_packages")
    syn region perlPackageFold start="^package \S\+;\s*\%(#.*\)\=$" end="^1;\=\s*\%(#.*\)\=$" end="\n\+package"me=s-1 transparent fold keepend
  endif
  if !exists("perl_nofold_subs")
    if get(g:, "perl_fold_anonymous_subs", 0)
      syn region perlSubFold start="\<sub\>[^{]*{" end="}" transparent fold keepend extend
      syn region perlSubFold start="\<\%(BEGIN\|END\|CHECK\|INIT\)\>\s*{" end="}" transparent fold keepend
    else
      syn region perlSubFold     start="^\z(\s*\)\<sub\>.*[^};]$" end="^\z1}\s*\%(#.*\)\=$" transparent fold keepend
      syn region perlSubFold start="^\z(\s*\)\<\%(BEGIN\|END\|CHECK\|INIT\|UNITCHECK\)\>.*[^};]$" end="^\z1}\s*$" transparent fold keepend
    endif
  endif

  if exists("perl_fold_blocks")
    syn region perlBlockFold start="^\z(\s*\)\%(if\|elsif\|unless\|for\|while\|until\|given\)\s*(.*)\%(\s*{\)\=\s*\%(#.*\)\=$" start="^\z(\s*\)for\%(each\)\=\s*\%(\%(my\|our\)\=\s*\S\+\s*\)\=(.*)\%(\s*{\)\=\s*\%(#.*\)\=$" end="^\z1}\s*;\=\%(#.*\)\=$" transparent fold keepend
    syn region perlBlockFold start="^\z(\s*\)\%(do\|else\)\%(\s*{\)\=\s*\%(#.*\)\=$" end="^\z1}\s*while" end="^\z1}\s*;\=\%(#.*\)\=$" transparent fold keepend
  endif

  setlocal foldmethod=syntax
  syn sync fromstart
else
  " fromstart above seems to set minlines even if perl_fold is not set.
  syn sync minlines=0
endif

" NOTE: If you're linking new highlight groups to perlString, please also put
"       them into b:match_skip in ftplugin/perl.vim.

" The default highlighting.
hi def link perlSharpBang		PreProc
hi def link perlControl		PreProc
hi def link perlInclude		Include
hi def link perlSpecial		Special
hi def link perlString		String
hi def link perlCharacter		Character
hi def link perlNumber		Number
hi def link perlFloat		Float
hi def link perlType			Type
hi def link perlIdentifier		Identifier
hi def link perlLabel		Label
hi def link perlStatement		Statement
hi def link perlConditional		Conditional
hi def link perlRepeat		Repeat
hi def link perlOperator		Operator
hi def link perlFunction		Keyword
hi def link perlSubName		Function
hi def link perlSubPrototype		Type
hi def link perlSignature		Type
hi def link perlSubAttributes	PreProc
hi def link perlSubAttributesCont	perlSubAttributes
hi def link perlComment		Comment
hi def link perlTodo			Todo
if exists("perl_string_as_statement")
  hi def link perlStringStartEnd	perlStatement
else
  hi def link perlStringStartEnd	perlString
endif
hi def link perlVStringV		perlStringStartEnd
hi def link perlList			perlStatement
hi def link perlMisc			perlStatement
hi def link perlVarPlain		perlIdentifier
hi def link perlVarPlain2		perlIdentifier
hi def link perlArrow		perlIdentifier
hi def link perlFiledescRead		perlIdentifier
hi def link perlFiledescStatement	perlIdentifier
hi def link perlVarSimpleMember	perlIdentifier
hi def link perlVarSimpleMemberName 	perlString
hi def link perlVarNotInMatches	perlIdentifier
hi def link perlVarSlash		perlIdentifier
hi def link perlQQ			perlString
hi def link perlHereDoc		perlString
hi def link perlStringUnexpanded	perlString
hi def link perlSubstitutionSQ	perlString
hi def link perlSubstitutionGQQ	perlString
hi def link perlTranslationGQ	perlString
hi def link perlMatch		perlString
hi def link perlMatchStartEnd	perlStatement
hi def link perlFormatName		perlIdentifier
hi def link perlFormatField		perlString
hi def link perlPackageDecl		perlType
hi def link perlStorageClass		perlType
hi def link perlPackageRef		perlType
hi def link perlStatementPackage	perlStatement
hi def link perlStatementStorage	perlStatement
hi def link perlStatementControl	perlStatement
hi def link perlStatementScalar	perlStatement
hi def link perlStatementRegexp	perlStatement
hi def link perlStatementNumeric	perlStatement
hi def link perlStatementList	perlStatement
hi def link perlStatementHash	perlStatement
hi def link perlStatementIOfunc	perlStatement
hi def link perlStatementFiledesc	perlStatement
hi def link perlStatementVector	perlStatement
hi def link perlStatementFiles	perlStatement
hi def link perlStatementFlow	perlStatement
hi def link perlStatementInclude	perlStatement
hi def link perlStatementProc	perlStatement
hi def link perlStatementSocket	perlStatement
hi def link perlStatementIPC		perlStatement
hi def link perlStatementNetwork	perlStatement
hi def link perlStatementPword	perlStatement
hi def link perlStatementTime	perlStatement
hi def link perlStatementMisc	perlStatement
hi def link perlStatementIndirObj	perlStatement
hi def link perlFunctionName		perlIdentifier
hi def link perlMethod		perlIdentifier
hi def link perlPostDeref		perlIdentifier
hi def link perlFunctionPRef		perlType
if !get(g:, 'perl_include_pod', 1)
  hi def link perlPOD		perlComment
endif
hi def link perlShellCommand		perlString
hi def link perlSpecialAscii		perlSpecial
hi def link perlSpecialDollar	perlSpecial
hi def link perlSpecialString	perlSpecial
hi def link perlSpecialStringU	perlSpecial
hi def link perlSpecialMatch		perlSpecial
hi def link perlDATA			perlComment

" NOTE: Due to a bug in Vim (or more likely, a misunderstanding on my part),
"       I had to remove the transparent property from the following regions
"       in order to get them to highlight correctly.  Feel free to remove
"       these and reinstate the transparent property if you know how.
hi def link perlParensSQ		perlString
hi def link perlBracketsSQ		perlString
hi def link perlBracesSQ		perlString
hi def link perlAnglesSQ		perlString

hi def link perlParensDQ		perlString
hi def link perlBracketsDQ		perlString
hi def link perlBracesDQ		perlString
hi def link perlAnglesDQ		perlString

hi def link perlSpecialStringU2	perlString

" Possible errors
hi def link perlNotEmptyLine		Error
hi def link perlElseIfError		Error
hi def link perlSubPrototypeError	Error
hi def link perlSubError		Error

" Syncing to speed up processing
"
if !exists("perl_no_sync_on_sub")
  syn sync match perlSync	grouphere NONE "^\s*\<package\s"
  syn sync match perlSync	grouphere NONE "^\s*\<sub\>"
  syn sync match perlSync	grouphere NONE "^}"
endif

if !exists("perl_no_sync_on_global_var")
  syn sync match perlSync	grouphere NONE "^$\I[[:alnum:]_:]+\s*=\s*{"
  syn sync match perlSync	grouphere NONE "^[@%]\I[[:alnum:]_:]+\s*=\s*("
endif

if exists("perl_sync_dist")
  execute "syn sync maxlines=" . perl_sync_dist
else
  syn sync maxlines=100
endif

syn sync match perlSyncPOD	grouphere perlPOD "^=pod"
syn sync match perlSyncPOD	grouphere perlPOD "^=head"
syn sync match perlSyncPOD	grouphere perlPOD "^=item"
syn sync match perlSyncPOD	grouphere NONE "^=cut"

let b:current_syntax = "perl"

let &cpo = s:cpo_save
unlet s:cpo_save

" XXX Change to sts=4:sw=4
" vim:ts=8:sts=2:sw=2:expandtab:ft=vim

[ 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