GRAYBYTE WORDPRESS FILE MANAGER1289

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
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//neomuttrc.vim
" Vim syntax file
" Language:	NeoMutt setup files
" Maintainer:	Guillaume Brogi <gui-gui@netcourrier.com>
" Last Change:	2018-03-25
" Original version based on syntax/muttrc.vim

" This file covers NeoMutt 2018-03-23

" quit when a syntax file was already loaded
if exists("b:current_syntax")
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

" Set the keyword characters
setlocal isk=@,48-57,_,-

" handling optional variables
syntax match muttrcComment		"^# .*$" contains=@Spell
syntax match muttrcComment		"^#[^ ].*$"
syntax match muttrcComment		"^#$"
syntax match muttrcComment		"[^\\]#.*$"lc=1

" Escape sequences (back-tick and pipe goes here too)
syntax match muttrcEscape		+\\[#tnr"'Cc ]+
syntax match muttrcEscape		+[`|]+
syntax match muttrcEscape		+\\$+

" The variables takes the following arguments
"syn match  muttrcString		contained "=\s*[^ #"'`]\+"lc=1 contains=muttrcEscape
syntax region muttrcString		contained keepend start=+"+ms=e skip=+\\"+ end=+"+ contains=muttrcEscape,muttrcCommand,muttrcAction,muttrcShellString
syntax region muttrcString		contained keepend start=+'+ms=e skip=+\\'+ end=+'+ contains=muttrcEscape,muttrcCommand,muttrcAction
syntax match muttrcStringNL	contained skipwhite skipnl "\s*\\$" nextgroup=muttrcString,muttrcStringNL

syntax region muttrcShellString	matchgroup=muttrcEscape keepend start=+`+ skip=+\\`+ end=+`+ contains=muttrcVarStr,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcCommand,muttrcVarDeprecatedStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad

syntax match  muttrcRXChars	contained /[^\\][][.*?+]\+/hs=s+1
syntax match  muttrcRXChars	contained /[][|()][.*?+]*/
syntax match  muttrcRXChars	contained /['"]^/ms=s+1
syntax match  muttrcRXChars	contained /$['"]/me=e-1
syntax match  muttrcRXChars	contained /\\/
" Why does muttrcRXString2 work with one \ when muttrcRXString requires two?
syntax region muttrcRXString	contained skipwhite start=+'+ skip=+\\'+ end=+'+ contains=muttrcRXChars
syntax region muttrcRXString	contained skipwhite start=+"+ skip=+\\"+ end=+"+ contains=muttrcRXChars
syntax region muttrcRXString	contained skipwhite start=+[^ 	"'^]+ skip=+\\\s+ end=+\s+re=e-1 contains=muttrcRXChars
" For some reason, skip refuses to match backslashes here...
syntax region muttrcRXString	contained matchgroup=muttrcRXChars skipwhite start=+\^+ end=+[^\\]\s+re=e-1 contains=muttrcRXChars
syntax region muttrcRXString	contained matchgroup=muttrcRXChars skipwhite start=+\^+ end=+$\s+ contains=muttrcRXChars
syntax region muttrcRXString2	contained skipwhite start=+'+ skip=+\'+ end=+'+ contains=muttrcRXChars
syntax region muttrcRXString2	contained skipwhite start=+"+ skip=+\"+ end=+"+ contains=muttrcRXChars

" these must be kept synchronized with muttrcRXString, but are intended for
" muttrcRXHooks
syntax region muttrcRXHookString	contained keepend skipwhite start=+'+ skip=+\\'+ end=+'+ contains=muttrcRXString nextgroup=muttrcString,muttrcStringNL
syntax region muttrcRXHookString	contained keepend skipwhite start=+"+ skip=+\\"+ end=+"+ contains=muttrcRXString nextgroup=muttrcString,muttrcStringNL
syntax region muttrcRXHookString	contained keepend skipwhite start=+[^ 	"'^]+ skip=+\\\s+ end=+\s+re=e-1 contains=muttrcRXString nextgroup=muttrcString,muttrcStringNL
syntax region muttrcRXHookString	contained keepend skipwhite start=+\^+ end=+[^\\]\s+re=e-1 contains=muttrcRXString nextgroup=muttrcString,muttrcStringNL
syntax region muttrcRXHookString	contained keepend matchgroup=muttrcRXChars skipwhite start=+\^+ end=+$\s+ contains=muttrcRXString nextgroup=muttrcString,muttrcStringNL
syntax match muttrcRXHookStringNL contained skipwhite skipnl "\s*\\$" nextgroup=muttrcRXHookString,muttrcRXHookStringNL

" these are exclusively for args lists (e.g. -rx pat pat pat ...)
syntax region muttrcRXPat		contained keepend skipwhite start=+'+ skip=+\\'+ end=+'\s*+ contains=muttrcRXString nextgroup=muttrcRXPat
syntax region muttrcRXPat		contained keepend skipwhite start=+"+ skip=+\\"+ end=+"\s*+ contains=muttrcRXString nextgroup=muttrcRXPat
syntax match muttrcRXPat		contained /[^-'"#!]\S\+/ skipwhite contains=muttrcRXChars nextgroup=muttrcRXPat
syntax match muttrcRXDef 		contained "-rx\s\+" skipwhite nextgroup=muttrcRXPat

syntax match muttrcSpecial		+\(['"]\)!\1+

syntax match muttrcSetStrAssignment contained skipwhite /=\s*\%(\\\?\$\)\?[0-9A-Za-z_-]\+/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr contains=muttrcVariable,muttrcEscapedVariable
syntax region muttrcSetStrAssignment contained skipwhite keepend start=+=\s*"+hs=s+1 end=+"+ skip=+\\"+ nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr contains=muttrcString
syntax region muttrcSetStrAssignment contained skipwhite keepend start=+=\s*'+hs=s+1 end=+'+ skip=+\\'+ nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr contains=muttrcString
syntax match muttrcSetBoolAssignment contained skipwhite /=\s*\\\?\$\w\+/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr contains=muttrcVariable,muttrcEscapedVariable
syntax match muttrcSetBoolAssignment contained skipwhite /=\s*\%(yes\|no\)/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax match muttrcSetBoolAssignment contained skipwhite /=\s*"\%(yes\|no\)"/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax match muttrcSetBoolAssignment contained skipwhite /=\s*'\%(yes\|no\)'/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax match muttrcSetQuadAssignment contained skipwhite /=\s*\\\?\$\w\+/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr contains=muttrcVariable,muttrcEscapedVariable
syntax match muttrcSetQuadAssignment contained skipwhite /=\s*\%(ask-\)\?\%(yes\|no\)/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax match muttrcSetQuadAssignment contained skipwhite /=\s*"\%(ask-\)\?\%(yes\|no\)"/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax match muttrcSetQuadAssignment contained skipwhite /=\s*'\%(ask-\)\?\%(yes\|no\)'/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax match muttrcSetNumAssignment contained skipwhite /=\s*\\\?\$\w\+/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr contains=muttrcVariable,muttrcEscapedVariable
syntax match muttrcSetNumAssignment contained skipwhite /=\s*\d\+/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax match muttrcSetNumAssignment contained skipwhite /=\s*"\d\+"/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax match muttrcSetNumAssignment contained skipwhite /=\s*'\d\+'/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr

" Now catch some email addresses and headers (purified version from mail.vim)
syntax match muttrcEmail		"[a-zA-Z0-9._-]\+@[a-zA-Z0-9./-]\+"
syntax match muttrcHeader		"\<\c\%(From\|To\|C[Cc]\|B[Cc][Cc]\|Reply-To\|Subject\|Return-Path\|Received\|Date\|Replied\|Attach\)\>:\="

syntax match   muttrcKeySpecial	contained +\%(\\[Cc'"]\|\^\|\\[01]\d\{2}\)+
syntax match   muttrcKey		contained "\S\+"			contains=muttrcKeySpecial,muttrcKeyName
syntax region  muttrcKey		contained start=+"+ skip=+\\\\\|\\"+ end=+"+	contains=muttrcKeySpecial,muttrcKeyName
syntax region  muttrcKey		contained start=+'+ skip=+\\\\\|\\'+ end=+'+	contains=muttrcKeySpecial,muttrcKeyName
syntax match   muttrcKeyName	contained "\\[trne]"
syntax match   muttrcKeyName	contained "\c<\%(BackSpace\|BackTab\|Delete\|Down\|End\|Enter\|Esc\|Home\|Insert\|Left\|Next\|PageDown\|PageUp\|Return\|Right\|Space\|Tab\|Up\)>"
syntax match   muttrcKeyName	contained "\c<F\d\+>"

syntax match muttrcFormatErrors contained /%./

syntax match muttrcStrftimeEscapes contained /%[AaBbCcDdeFGgHhIjklMmnpRrSsTtUuVvWwXxYyZz+%]/
syntax match muttrcStrftimeEscapes contained /%E[cCxXyY]/
syntax match muttrcStrftimeEscapes contained /%O[BdeHImMSuUVwWy]/

syntax region muttrcIndexFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcIndexFormatEscapes,muttrcIndexFormatConditionals,muttrcFormatErrors,muttrcTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcIndexFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcIndexFormatEscapes,muttrcIndexFormatConditionals,muttrcFormatErrors,muttrcTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcGroupIndexFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcGroupIndexFormatEscapes,muttrcGroupIndexFormatConditionals,muttrcFormatErrors,muttrcTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcGroupIndexFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcGroupIndexFormatEscapes,muttrcGroupIndexFormatConditionals,muttrcFormatErrors,muttrcTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcSidebarFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcSidebarFormatEscapes,muttrcSidebarFormatConditionals,muttrcFormatErrors,muttrcTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcSidebarFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcSidebarFormatEscapes,muttrcSidebarFormatConditionals,muttrcFormatErrors,muttrcTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcQueryFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcQueryFormatEscapes,muttrcQueryFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcAliasFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcAliasFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcAliasFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcAliasFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcAttachFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcAttachFormatEscapes,muttrcAttachFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcAttachFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcAttachFormatEscapes,muttrcAttachFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcComposeFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcComposeFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcComposeFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcComposeFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcFolderFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcFolderFormatEscapes,muttrcFolderFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcFolderFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcFolderFormatEscapes,muttrcFolderFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcMixFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcMixFormatEscapes,muttrcMixFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcMixFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcMixFormatEscapes,muttrcMixFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcPGPFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPGPFormatEscapes,muttrcPGPFormatConditionals,muttrcFormatErrors,muttrcPGPTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcPGPFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPGPFormatEscapes,muttrcPGPFormatConditionals,muttrcFormatErrors,muttrcPGPTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcPGPCmdFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPGPCmdFormatEscapes,muttrcPGPCmdFormatConditionals,muttrcVariable,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcPGPCmdFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPGPCmdFormatEscapes,muttrcPGPCmdFormatConditionals,muttrcVariable,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcStatusFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcStatusFormatEscapes,muttrcStatusFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcStatusFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcStatusFormatEscapes,muttrcStatusFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcPGPGetKeysFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPGPGetKeysFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcPGPGetKeysFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPGPGetKeysFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcSmimeFormatStr	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcSmimeFormatEscapes,muttrcSmimeFormatConditionals,muttrcVariable,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcSmimeFormatStr	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcSmimeFormatEscapes,muttrcSmimeFormatConditionals,muttrcVariable,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcStrftimeFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcStrftimeEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax region muttrcStrftimeFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcStrftimeEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr

" Format escapes and conditionals
syntax match muttrcFormatConditionals2 contained /[^?]*?/
function! s:escapesConditionals(baseName, sequence, alignment, secondary)
	exec 'syntax match muttrc' . a:baseName . 'Escapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?\%(' . a:sequence . '\|%\)/'
	if a:alignment
		exec 'syntax match muttrc' . a:baseName . 'Escapes contained /%[>|*]./'
	endif
	if a:secondary
		exec 'syntax match muttrc' . a:baseName . 'Conditionals contained /%?\%(' . a:sequence . '\)?/ nextgroup=muttrcFormatConditionals2'
	else
		exec 'syntax match muttrc' . a:baseName . 'Conditionals contained /%?\%(' . a:sequence . '\)?/'
	endif
endfunction

" CHECKED 2018-04-18
" Ref: index_format_str() in hdrline.c
call s:escapesConditionals('IndexFormat', '[AaBbCcDdEeFfgHIiJKLlMmNnOPqRrSsTtuvWXxYyZz(<[{]\|G[a-zA-Z]\+', 1, 1)
" Ref: alias_format_str() in addrbook.c
syntax match muttrcAliasFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[afnrt%]/
" Ref: group_index_format_str() in browser.c
call s:escapesConditionals('GroupIndexFormat', '[CdfMNns]', 1, 1)
" Ref: sidebar_format_str() in sidebar.c
call s:escapesConditionals('SidebarFormat', '[BdFLNnSt!]', 1, 1)
" Ref: query_format_str() in query.c
call s:escapesConditionals('QueryFormat', '[acent]', 0, 1)
" Ref: attach_format_str() in recvattach.c
call s:escapesConditionals('AttachFormat', '[CcDdeFfIMmnQsTtuX]', 1, 1)
" Ref: compose_format_str() in compose.c
syntax match muttrcComposeFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[ahlv%]/
syntax match muttrcComposeFormatEscapes contained /%[>|*]./
" Ref: folder_format_str() in browser.c
call s:escapesConditionals('FolderFormat', '[CDdFfglmNnstu]', 1, 0)
" Ref: mix_format_str() in remailer.c
call s:escapesConditionals('MixFormat', '[acns]', 0, 0)
" Ref: status_format_str() in status.c
call s:escapesConditionals('StatusFormat', '[bdFfhLlMmnoPpRrSstuVv]', 1, 1)
" Ref: fmt_smime_command() in ncrypt/smime.c
call s:escapesConditionals('SmimeFormat', '[aCcdfiks]', 0, 1)
" Ref: crypt_format_str() in ncrypt/crypt_gpgme.c
" Ref: pgp_entry_fmt() in ncrypt/pgpkey.c
" Note: crypt_format_str() supports 'p', but pgp_entry_fmt() does not
call s:escapesConditionals('PGPFormat', '[acfklnptu[]', 0, 0)
" Ref: fmt_pgp_command() ncrypt/pgpinvoke.c
call s:escapesConditionals('PGPCmdFormat', '[afprs]', 0, 1)

" This matches the documentation, but directly contradicts the code
" (according to the code, this should be identical to the muttrcPGPCmdFormatEscapes
syntax match muttrcPGPGetKeysFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[acfklntu[%]/

syntax region muttrcTimeEscapes contained start=+%{+ end=+}+ contains=muttrcStrftimeEscapes
syntax region muttrcTimeEscapes contained start=+%\[+ end=+\]+ contains=muttrcStrftimeEscapes
syntax region muttrcTimeEscapes contained start=+%(+ end=+)+ contains=muttrcStrftimeEscapes
syntax region muttrcTimeEscapes contained start=+%<+ end=+>+ contains=muttrcStrftimeEscapes
syntax region muttrcPGPTimeEscapes contained start=+%\[+ end=+\]+ contains=muttrcStrftimeEscapes

syntax match muttrcVarEqualsAliasFmt      contained skipwhite "=" nextgroup=muttrcAliasFormatStr
syntax match muttrcVarEqualsAttachFmt     contained skipwhite "=" nextgroup=muttrcAttachFormatStr
syntax match muttrcVarEqualsComposeFmt    contained skipwhite "=" nextgroup=muttrcComposeFormatStr
syntax match muttrcVarEqualsFolderFmt     contained skipwhite "=" nextgroup=muttrcFolderFormatStr
syntax match muttrcVarEqualsGrpIdxFmt     contained skipwhite "=" nextgroup=muttrcGroupIndexFormatStr
syntax match muttrcVarEqualsIdxFmt        contained skipwhite "=" nextgroup=muttrcIndexFormatStr
syntax match muttrcVarEqualsMixFmt        contained skipwhite "=" nextgroup=muttrcMixFormatStr
syntax match muttrcVarEqualsPGPCmdFmt     contained skipwhite "=" nextgroup=muttrcPGPCmdFormatStr
syntax match muttrcVarEqualsPGPFmt        contained skipwhite "=" nextgroup=muttrcPGPFormatStr
syntax match muttrcVarEqualsPGPGetKeysFmt contained skipwhite "=" nextgroup=muttrcPGPGetKeysFormatStr
syntax match muttrcVarEqualsQueryFmt      contained skipwhite "=" nextgroup=muttrcQueryFormatStr
syntax match muttrcVarEqualsSdbFmt        contained skipwhite "=" nextgroup=muttrcSidebarFormatStr
syntax match muttrcVarEqualsSmimeFmt      contained skipwhite "=" nextgroup=muttrcSmimeFormatStr
syntax match muttrcVarEqualsStatusFmt     contained skipwhite "=" nextgroup=muttrcStatusFormatStr
syntax match muttrcVarEqualsStrftimeFmt   contained skipwhite "=" nextgroup=muttrcStrftimeFormatStr

syntax match muttrcVPrefix contained /[?&]/ nextgroup=muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr

" CHECKED 2018-04-18
" List of the different screens in mutt
syntax keyword muttrcMenu contained alias attach browser compose editor generic index key_select_pgp key_select_smime mix pager pgp postpone query smime
syntax match muttrcMenuList "\S\+" contained contains=muttrcMenu
syntax match muttrcMenuCommas /,/ contained

" CHECKED 2018-04-18
" List of hooks in Commands in init.h
syntax keyword muttrcHooks contained skipwhite
			\ account-hook append-hook close-hook crypt-hook fcc-hook fcc-save-hook
			\ folder-hook iconv-hook mbox-hook message-hook open-hook pgp-hook
			\ reply-hook save-hook send-hook send2-hook
syntax keyword muttrcHooks skipwhite shutdown-hook startup-hook timeout-hook nextgroup=muttrcCommand

syntax region muttrcSpamPattern	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPattern nextgroup=muttrcString,muttrcStringNL
syntax region muttrcSpamPattern	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPattern nextgroup=muttrcString,muttrcStringNL

syntax region muttrcNoSpamPattern	contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPattern
syntax region muttrcNoSpamPattern	contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPattern

syntax match muttrcAttachmentsMimeType contained "[*a-z0-9_-]\+/[*a-z0-9._-]\+\s*" skipwhite nextgroup=muttrcAttachmentsMimeType
syntax match muttrcAttachmentsFlag contained "[+-]\%([AI]\|inline\|attachment\)\s\+" skipwhite nextgroup=muttrcAttachmentsMimeType
syntax match muttrcAttachmentsLine "^\s*\%(un\)\?attachments\s\+" skipwhite nextgroup=muttrcAttachmentsFlag

syntax match muttrcUnHighlightSpace contained "\%(\s\+\|\\$\)"

syntax keyword muttrcAsterisk	contained *
syntax keyword muttrcListsKeyword	lists skipwhite nextgroup=muttrcGroupDef,muttrcComment
syntax keyword muttrcListsKeyword	unlists skipwhite nextgroup=muttrcAsterisk,muttrcComment

syntax keyword muttrcSubscribeKeyword	subscribe nextgroup=muttrcGroupDef,muttrcComment
syntax keyword muttrcSubscribeKeyword	unsubscribe nextgroup=muttrcAsterisk,muttrcComment

syntax keyword muttrcAlternateKeyword contained alternates unalternates
syntax region muttrcAlternatesLine keepend start=+^\s*\%(un\)\?alternates\s+ skip=+\\$+ end=+$+ contains=muttrcAlternateKeyword,muttrcGroupDef,muttrcRXPat,muttrcUnHighlightSpace,muttrcComment

" muttrcVariable includes a prefix because partial strings are considered
" valid.
syntax match muttrcVariable	contained "\\\@<![a-zA-Z_-]*\$[a-zA-Z_-]\+" contains=muttrcVariableInner
syntax match muttrcVariableInner	contained "\$[a-zA-Z_-]\+"
syntax match muttrcEscapedVariable	contained "\\\$[a-zA-Z_-]\+"

syntax match muttrcBadAction	contained "[^<>]\+" contains=muttrcEmail
syntax match muttrcAction		contained "<[^>]\{-}>" contains=muttrcBadAction,muttrcFunction,muttrcKeyName

" First, functions that take regular expressions:
syntax match  muttrcRXHookNot	contained /!\s*/ skipwhite nextgroup=muttrcRXHookString,muttrcRXHookStringNL
syntax match  muttrcRXHooks	/\<\%(account\|append\|close\|crypt\|folder\|mbox\|open\|pgp\)-hook\>/ skipwhite nextgroup=muttrcRXHookNot,muttrcRXHookString,muttrcRXHookStringNL

" Now, functions that take patterns
syntax match muttrcPatHookNot	contained /!\s*/ skipwhite nextgroup=muttrcPattern
syntax match muttrcPatHooks	/\<\%(charset\|iconv\)-hook\>/ skipwhite nextgroup=muttrcPatHookNot,muttrcPattern
syntax match muttrcPatHooks	/\<\%(message\|reply\|send\|send2\|save\|fcc\|fcc-save\)-hook\>/ skipwhite nextgroup=muttrcPatHookNot,muttrcOptPattern

syntax match muttrcBindFunction	contained /\S\+\>/ skipwhite contains=muttrcFunction
syntax match muttrcBindFunctionNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcBindFunction,muttrcBindFunctionNL
syntax match muttrcBindKey		contained /\S\+/ skipwhite contains=muttrcKey nextgroup=muttrcBindFunction,muttrcBindFunctionNL
syntax match muttrcBindKeyNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcBindKey,muttrcBindKeyNL
syntax match muttrcBindMenuList	contained /\S\+/ skipwhite contains=muttrcMenu,muttrcMenuCommas nextgroup=muttrcBindKey,muttrcBindKeyNL
syntax match muttrcBindMenuListNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcBindMenuList,muttrcBindMenuListNL

syntax region muttrcMacroDescr	contained keepend skipwhite start=+\s*\S+ms=e skip=+\\ + end=+ \|$+me=s
syntax region muttrcMacroDescr	contained keepend skipwhite start=+'+ms=e skip=+\\'+ end=+'+me=s
syntax region muttrcMacroDescr	contained keepend skipwhite start=+"+ms=e skip=+\\"+ end=+"+me=s
syntax match muttrcMacroDescrNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroDescr,muttrcMacroDescrNL
syntax region muttrcMacroBody	contained skipwhite start="\S" skip='\\ \|\\$' end=' \|$' contains=muttrcEscape,muttrcSet,muttrcUnset,muttrcReset,muttrcToggle,muttrcCommand,muttrcAction nextgroup=muttrcMacroDescr,muttrcMacroDescrNL
syntax region muttrcMacroBody matchgroup=Type contained skipwhite start=+'+ms=e skip=+\\'+ end=+'\|\%(\%(\\\\\)\@<!$\)+me=s contains=muttrcEscape,muttrcSet,muttrcUnset,muttrcReset,muttrcToggle,muttrcSpam,muttrcNoSpam,muttrcCommand,muttrcAction,muttrcVariable nextgroup=muttrcMacroDescr,muttrcMacroDescrNL
syntax region muttrcMacroBody matchgroup=Type contained skipwhite start=+"+ms=e skip=+\\"+ end=+"\|\%(\%(\\\\\)\@<!$\)+me=s contains=muttrcEscape,muttrcSet,muttrcUnset,muttrcReset,muttrcToggle,muttrcSpam,muttrcNoSpam,muttrcCommand,muttrcAction,muttrcVariable nextgroup=muttrcMacroDescr,muttrcMacroDescrNL
syntax match muttrcMacroBodyNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroBody,muttrcMacroBodyNL
syntax match muttrcMacroKey	contained /\S\+/ skipwhite contains=muttrcKey nextgroup=muttrcMacroBody,muttrcMacroBodyNL
syntax match muttrcMacroKeyNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroKey,muttrcMacroKeyNL
syntax match muttrcMacroMenuList	contained /\S\+/ skipwhite contains=muttrcMenu,muttrcMenuCommas nextgroup=muttrcMacroKey,muttrcMacroKeyNL
syntax match muttrcMacroMenuListNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroMenuList,muttrcMacroMenuListNL

syntax match muttrcAddrContent	contained "[a-zA-Z0-9._-]\+@[a-zA-Z0-9./-]\+\s*" skipwhite contains=muttrcEmail nextgroup=muttrcAddrContent
syntax region muttrcAddrContent	contained start=+'+ end=+'\s*+ skip=+\\'+ skipwhite contains=muttrcEmail nextgroup=muttrcAddrContent
syntax region muttrcAddrContent	contained start=+"+ end=+"\s*+ skip=+\\"+ skipwhite contains=muttrcEmail nextgroup=muttrcAddrContent
syntax match muttrcAddrDef 	contained "-addr\s\+" skipwhite nextgroup=muttrcAddrContent

syntax match muttrcGroupFlag	contained "-group"
syntax region muttrcGroupDef	contained start="-group\s\+" skip="\\$" end="\s" skipwhite keepend contains=muttrcGroupFlag,muttrcUnHighlightSpace

syntax keyword muttrcGroupKeyword	contained group ungroup
syntax region muttrcGroupLine	keepend start=+^\s*\%(un\)\?group\s+ skip=+\\$+ end=+$+ contains=muttrcGroupKeyword,muttrcGroupDef,muttrcAddrDef,muttrcRXDef,muttrcUnHighlightSpace,muttrcComment

syntax match muttrcAliasGroupName	contained /\w\+/ skipwhite nextgroup=muttrcAliasGroupDef,muttrcAliasKey,muttrcAliasNL
syntax match muttrcAliasGroupDefNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasGroupName,muttrcAliasGroupDefNL
syntax match muttrcAliasGroupDef	contained /\s*-group/ skipwhite nextgroup=muttrcAliasGroupName,muttrcAliasGroupDefNL contains=muttrcGroupFlag
syntax match muttrcAliasComma	contained /,/ skipwhite nextgroup=muttrcAliasEmail,muttrcAliasEncEmail,muttrcAliasNameNoParens,muttrcAliasENNL
syntax match muttrcAliasEmail	contained /\S\+@\S\+/ contains=muttrcEmail nextgroup=muttrcAliasName,muttrcAliasNameNL skipwhite
syntax match muttrcAliasEncEmail	contained /<[^>]\+>/ contains=muttrcEmail nextgroup=muttrcAliasComma
syntax match muttrcAliasEncEmailNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasEncEmail,muttrcAliasEncEmailNL
syntax match muttrcAliasNameNoParens contained /[^<(@]\+\s\+/ nextgroup=muttrcAliasEncEmail,muttrcAliasEncEmailNL
syntax region muttrcAliasName	contained matchgroup=Type start=/(/ end=/)/ skipwhite
syntax match muttrcAliasNameNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasName,muttrcAliasNameNL
syntax match muttrcAliasENNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasEmail,muttrcAliasEncEmail,muttrcAliasNameNoParens,muttrcAliasENNL
syntax match muttrcAliasKey	contained /\s*[^- \t]\S\+/ skipwhite nextgroup=muttrcAliasEmail,muttrcAliasEncEmail,muttrcAliasNameNoParens,muttrcAliasENNL
syntax match muttrcAliasNL		contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasGroupDef,muttrcAliasKey,muttrcAliasNL

syntax match muttrcUnAliasKey	contained "\s*\w\+\s*" skipwhite nextgroup=muttrcUnAliasKey,muttrcUnAliasNL
syntax match muttrcUnAliasNL	contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcUnAliasKey,muttrcUnAliasNL

syntax match muttrcSimplePat contained "!\?\^\?[~][ADEFgGklNOpPQRSTuUvV=$]"
syntax match muttrcSimplePat contained "!\?\^\?[~][mnXz]\s*\%([<>-][0-9]\+[kM]\?\|[0-9]\+[kM]\?[-]\%([0-9]\+[kM]\?\)\?\)"
syntax match muttrcSimplePat contained "!\?\^\?[~][dr]\s*\%(\%(-\?[0-9]\{1,2}\%(/[0-9]\{1,2}\%(/[0-9]\{2}\%([0-9]\{2}\)\?\)\?\)\?\%([+*-][0-9]\+[ymwd]\)*\)\|\%(\%([0-9]\{1,2}\%(/[0-9]\{1,2}\%(/[0-9]\{2}\%([0-9]\{2}\)\?\)\?\)\?\%([+*-][0-9]\+[ymwd]\)*\)-\%([0-9]\{1,2}\%(/[0-9]\{1,2}\%(/[0-9]\{2}\%([0-9]\{2}\)\?\)\?\)\?\%([+*-][0-9]\+[ymwd]\)\?\)\?\)\|\%([<>=][0-9]\+[ymwd]\)\|\%(`[^`]\+`\)\|\%(\$[a-zA-Z0-9_-]\+\)\)" contains=muttrcShellString,muttrcVariable
syntax match muttrcSimplePat contained "!\?\^\?[~][bBcCefhHiLstxy]\s*" nextgroup=muttrcSimplePatRXContainer
syntax match muttrcSimplePat contained "!\?\^\?[%][bBcCefhHiLstxy]\s*" nextgroup=muttrcSimplePatString
syntax match muttrcSimplePat contained "!\?\^\?[=][bcCefhHiLstxy]\s*" nextgroup=muttrcSimplePatString
syntax region muttrcSimplePat contained keepend start=+!\?\^\?[~](+ end=+)+ contains=muttrcSimplePat
"syn match muttrcSimplePat contained /'[^~=%][^']*/ contains=muttrcRXString
syntax region muttrcSimplePatString contained keepend start=+"+ end=+"+ skip=+\\"+
syntax region muttrcSimplePatString contained keepend start=+'+ end=+'+ skip=+\\'+
syntax region muttrcSimplePatString contained keepend start=+[^ 	"']+ skip=+\\ + end=+\s+re=e-1
syntax region muttrcSimplePatRXContainer contained keepend start=+"+ end=+"+ skip=+\\"+ contains=muttrcRXString
syntax region muttrcSimplePatRXContainer contained keepend start=+'+ end=+'+ skip=+\\'+ contains=muttrcRXString
syntax region muttrcSimplePatRXContainer contained keepend start=+[^ 	"']+ skip=+\\ + end=+\s+re=e-1 contains=muttrcRXString
syntax match muttrcSimplePatMetas contained /[(|)]/

syntax match muttrcOptSimplePat contained skipwhite /[~=%!(^].*/ contains=muttrcSimplePat,muttrcSimplePatMetas
syntax match muttrcOptSimplePat contained skipwhite /[^~=%!(^].*/ contains=muttrcRXString
syntax region muttrcOptPattern contained matchgroup=Type keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcOptSimplePat,muttrcUnHighlightSpace nextgroup=muttrcString,muttrcStringNL
syntax region muttrcOptPattern contained matchgroup=Type keepend skipwhite start=+'+ skip=+\\'+ end=+'+ contains=muttrcOptSimplePat,muttrcUnHighlightSpace nextgroup=muttrcString,muttrcStringNL
syntax region muttrcOptPattern contained keepend skipwhite start=+[~](+ end=+)+ skip=+\\)+ contains=muttrcSimplePat nextgroup=muttrcString,muttrcStringNL
syntax match muttrcOptPattern contained skipwhite /[~][A-Za-z]/ contains=muttrcSimplePat nextgroup=muttrcString,muttrcStringNL
syntax match muttrcOptPattern contained skipwhite /[.]/ nextgroup=muttrcString,muttrcStringNL
" Keep muttrcPattern and muttrcOptPattern synchronized
syntax region muttrcPattern contained matchgroup=Type keepend skipwhite start=+"+ skip=+\\"+ end=+"+ contains=muttrcSimplePat,muttrcUnHighlightSpace,muttrcSimplePatMetas
syntax region muttrcPattern contained matchgroup=Type keepend skipwhite start=+'+ skip=+\\'+ end=+'+ contains=muttrcSimplePat,muttrcUnHighlightSpace,muttrcSimplePatMetas
syntax region muttrcPattern contained keepend skipwhite start=+[~](+ end=+)+ skip=+\\)+ contains=muttrcSimplePat
syntax match muttrcPattern contained skipwhite /[~][A-Za-z]/ contains=muttrcSimplePat
syntax match muttrcPattern contained skipwhite /[.]/
syntax region muttrcPatternInner contained keepend start=+"[~=%!(^]+ms=s+1 skip=+\\"+ end=+"+me=e-1 contains=muttrcSimplePat,muttrcUnHighlightSpace,muttrcSimplePatMetas
syntax region muttrcPatternInner contained keepend start=+'[~=%!(^]+ms=s+1 skip=+\\'+ end=+'+me=e-1 contains=muttrcSimplePat,muttrcUnHighlightSpace,muttrcSimplePatMetas

" Colour definitions takes object, foreground and background arguments (regexps excluded).
syntax match muttrcColorMatchCount	contained "[0-9]\+"
syntax match muttrcColorMatchCountNL contained skipwhite skipnl "\s*\\$" nextgroup=muttrcColorMatchCount,muttrcColorMatchCountNL
syntax region muttrcColorRXPat	contained start=+\s*'+ skip=+\\'+ end=+'\s*+ keepend skipwhite contains=muttrcRXString2 nextgroup=muttrcColorMatchCount,muttrcColorMatchCountNL
syntax region muttrcColorRXPat	contained start=+\s*"+ skip=+\\"+ end=+"\s*+ keepend skipwhite contains=muttrcRXString2 nextgroup=muttrcColorMatchCount,muttrcColorMatchCountNL
syntax keyword muttrcColor	contained black blue cyan default green magenta red white yellow
syntax keyword muttrcColor	contained brightblack brightblue brightcyan brightdefault brightgreen brightmagenta brightred brightwhite brightyellow
syntax match   muttrcColor	contained "\<\%(bright\)\=color\d\{1,3}\>"
" Now for the structure of the color line
syntax match muttrcColorRXNL	contained skipnl "\s*\\$" nextgroup=muttrcColorRXPat,muttrcColorRXNL
syntax match muttrcColorBG 	contained /\s*[$]\?\w\+/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcColorRXPat,muttrcColorRXNL
syntax match muttrcColorBGNL	contained skipnl "\s*\\$" nextgroup=muttrcColorBG,muttrcColorBGNL
syntax match muttrcColorFG 	contained /\s*[$]\?\w\+/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcColorBG,muttrcColorBGNL
syntax match muttrcColorFGNL	contained skipnl "\s*\\$" nextgroup=muttrcColorFG,muttrcColorFGNL
syntax match muttrcColorContext 	contained /\s*[$]\?\w\+/ contains=muttrcColorField,muttrcVariable,muttrcUnHighlightSpace,muttrcColorCompose nextgroup=muttrcColorFG,muttrcColorFGNL
syntax match muttrcColorNL 	contained skipnl "\s*\\$" nextgroup=muttrcColorContext,muttrcColorNL,muttrcColorCompose
syntax match muttrcColorKeyword	contained /^\s*color\s\+/ nextgroup=muttrcColorContext,muttrcColorNL,muttrcColorCompose
" And now color's brother:
syntax region muttrcUnColorPatterns contained skipwhite start=+\s*'+ end=+'+ skip=+\\'+ contains=muttrcPattern nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
syntax region muttrcUnColorPatterns contained skipwhite start=+\s*"+ end=+"+ skip=+\\"+ contains=muttrcPattern nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
syntax match muttrcUnColorPatterns contained skipwhite /\s*[^'"\s]\S\*/ contains=muttrcPattern nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
syntax match muttrcUnColorPatNL	contained skipwhite skipnl /\s*\\$/ nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
syntax match muttrcUnColorAll	contained skipwhite /[*]/
syntax match muttrcUnColorAPNL	contained skipwhite skipnl /\s*\\$/ nextgroup=muttrcUnColorPatterns,muttrcUnColorAll,muttrcUnColorAPNL
syntax match muttrcUnColorIndex	contained skipwhite /\s*index\s\+/ nextgroup=muttrcUnColorPatterns,muttrcUnColorAll,muttrcUnColorAPNL
syntax match muttrcUnColorIndexNL	contained skipwhite skipnl /\s*\\$/ nextgroup=muttrcUnColorIndex,muttrcUnColorIndexNL
syntax match muttrcUnColorKeyword	contained skipwhite /^\s*uncolor\s\+/ nextgroup=muttrcUnColorIndex,muttrcUnColorIndexNL
syntax region muttrcUnColorLine keepend start=+^\s*uncolor\s+ skip=+\\$+ end=+$+ contains=muttrcUnColorKeyword,muttrcComment,muttrcUnHighlightSpace

syntax keyword muttrcMonoAttrib	contained bold none normal reverse standout underline
syntax keyword muttrcMono	contained mono		skipwhite nextgroup=muttrcColorField,muttrcColorCompose
syntax match   muttrcMonoLine	"^\s*mono\s\+\S\+"	skipwhite nextgroup=muttrcMonoAttrib contains=muttrcMono

" CHECKED 2018-04-18
" List of fields in Fields in color.c
syntax keyword muttrcColorField skipwhite contained
			\ attachment attach_headers body bold error hdrdefault header index
			\ index_author index_collapsed index_date index_flags index_label
			\ index_number index_size index_subject index_tag index_tags indicator
			\ markers message normal progress prompt quoted search sidebar_divider
			\ sidebar_flagged sidebar_highlight sidebar_indicator sidebar_new
			\ sidebar_ordinary sidebar_spoolfile signature status tilde tree underline
			\ nextgroup=muttrcColor
syntax match   muttrcColorField	contained "\<quoted\d\=\>"

syntax match muttrcColorCompose skipwhite contained /\s*compose\s*/ nextgroup=muttrcColorComposeField

" CHECKED 2018-04-18
" List of fields in ComposeFields in color.c
syntax keyword muttrcColorComposeField skipwhite contained
			\ header security_both security_encrypt security_none security_sign
			\ nextgroup=muttrcColorFG,muttrcColorFGNL
syntax region muttrcColorLine keepend start=/^\s*color\s\+/ skip=+\\$+ end=+$+ contains=muttrcColorKeyword,muttrcComment,muttrcUnHighlightSpace


function! s:boolQuadGen(type, vars, deprecated)
	let l:novars = copy(a:vars)
	call map(l:novars, '"no" . v:val')
	let l:invvars = copy(a:vars)
	call map(l:invvars, '"inv" . v:val')

	let l:orig_type = copy(a:type)
	if a:deprecated
		let l:type = 'Deprecated' . a:type
	else
		let l:type = a:type
	endif

	exec 'syntax keyword muttrcVar' . l:type . ' skipwhite contained ' . join(a:vars) . ' nextgroup=muttrcSet' . l:orig_type . 'Assignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr'
	exec 'syntax keyword muttrcVar' . l:type . ' skipwhite contained ' . join(l:novars) . ' nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr'
	exec 'syntax keyword muttrcVar' . l:type . ' skipwhite contained ' . join(l:invvars) . ' nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr'
endfunction

" CHECKED 2018-04-18
" List of DT_BOOL in MuttVars in init.h
call s:boolQuadGen('Bool', [
			\ 'allow_8bit', 'allow_ansi', 'arrow_cursor', 'ascii_chars', 'askbcc',
			\ 'askcc', 'ask_follow_up', 'ask_x_comment_to', 'attach_split', 'autoedit',
			\ 'auto_tag', 'beep', 'beep_new', 'bounce_delivered', 'braille_friendly',
			\ 'change_folder_next', 'check_mbox_size', 'check_new', 'collapse_all',
			\ 'collapse_flagged', 'collapse_unread', 'confirmappend', 'confirmcreate',
			\ 'crypt_autoencrypt', 'crypt_autopgp', 'crypt_autosign', 'crypt_autosmime',
			\ 'crypt_confirmhook', 'crypt_opportunistic_encrypt', 'crypt_replyencrypt',
			\ 'crypt_replysign', 'crypt_replysignencrypted', 'crypt_timestamp',
			\ 'crypt_use_gpgme', 'crypt_use_pka', 'delete_untag', 'digest_collapse',
			\ 'duplicate_threads', 'edit_headers', 'encode_from', 'fast_reply',
			\ 'fcc_clear', 'flag_safe', 'followup_to', 'force_name', 'forward_decode',
			\ 'forward_decrypt', 'forward_quote', 'forward_references', 'hdrs',
			\ 'header', 'header_cache_compress', 'header_color_partial', 'help',
			\ 'hidden_host', 'hide_limited', 'hide_missing', 'hide_thread_subject',
			\ 'hide_top_limited', 'hide_top_missing', 'history_remove_dups',
			\ 'honor_disposition', 'idn_decode', 'idn_encode', 'ignore_list_reply_to',
			\ 'imap_check_subscribed', 'imap_idle', 'imap_list_subscribed',
			\ 'imap_passive', 'imap_peek', 'imap_servernoise', 'implicit_autoview',
			\ 'include_onlyfirst', 'keep_flagged', 'mailcap_sanitize',
			\ 'maildir_check_cur', 'maildir_header_cache_verify', 'maildir_trash',
			\ 'mail_check_recent', 'mail_check_stats', 'markers', 'mark_old',
			\ 'menu_move_off', 'menu_scroll', 'message_cache_clean', 'meta_key',
			\ 'metoo', 'mh_purge', 'mime_forward_decode', 'mime_subject',
			\ 'mime_type_query_first', 'narrow_tree', 'nm_record', 'nntp_listgroup',
			\ 'nntp_load_description', 'pager_stop', 'pgp_autoinline',
			\ 'pgp_auto_decode', 'pgp_check_exit', 'pgp_ignore_subkeys', 'pgp_long_ids',
			\ 'pgp_replyinline', 'pgp_retainable_sigs', 'pgp_self_encrypt',
			\ 'pgp_show_unusable', 'pgp_strict_enc', 'pgp_use_gpg_agent', 'pipe_decode',
			\ 'pipe_split', 'pop_auth_try_all', 'pop_last', 'postpone_encrypt',
			\ 'print_decode', 'print_split', 'prompt_after', 'read_only',
			\ 'reflow_space_quotes', 'reflow_text', 'reply_self', 'reply_with_xorig',
			\ 'resolve', 'resume_draft_files', 'resume_edited_draft_files',
			\ 'reverse_alias', 'reverse_name', 'reverse_realname', 'rfc2047_parameters',
			\ 'save_address', 'save_empty', 'save_name', 'save_unsubscribed', 'score',
			\ 'show_new_news', 'show_only_unread', 'sidebar_folder_indent',
			\ 'sidebar_new_mail_only', 'sidebar_next_new_wrap', 'sidebar_on_right',
			\ 'sidebar_short_path', 'sidebar_visible', 'sig_dashes', 'sig_on_top',
			\ 'smart_wrap', 'smime_ask_cert_label', 'smime_decrypt_use_default_key',
			\ 'smime_is_default', 'smime_self_encrypt', 'sort_re', 'ssl_force_tls',
			\ 'ssl_usesystemcerts', 'ssl_use_sslv2', 'ssl_use_sslv3', 'ssl_use_tlsv1',
			\ 'ssl_use_tlsv1_1', 'ssl_use_tlsv1_2', 'ssl_verify_dates',
			\ 'ssl_verify_host', 'ssl_verify_partial_chains', 'status_on_top',
			\ 'strict_threads', 'suspend', 'text_flowed', 'thorough_search',
			\ 'thread_received', 'tilde', 'ts_enabled', 'uncollapse_jump',
			\ 'uncollapse_new', 'user_agent', 'use_8bitmime', 'use_domain',
			\ 'use_envelope_from', 'use_from', 'use_ipv6', 'virtual_spoolfile',
			\ 'wait_key', 'weed', 'wrap_search', 'write_bcc', 'x_comment_to'
			\ ], 0)

" CHECKED 2018-04-18
" Deprecated Bools
" List of DT_SYNONYM synonyms of Bools in MuttVars in init.h
call s:boolQuadGen('Bool', [
			\ 'edit_hdrs', 'envelope_from', 'forw_decode', 'forw_decrypt',
			\ 'forw_quote', 'ignore_linear_white_space', 'pgp_autoencrypt',
			\ 'pgp_autosign', 'pgp_auto_traditional', 'pgp_create_traditional',
			\ 'pgp_replyencrypt', 'pgp_replysign', 'pgp_replysignencrypted',
			\ 'xterm_set_titles'
			\ ], 1)

" CHECKED 2018-04-18
" List of DT_QUAD in MuttVars in init.h
call s:boolQuadGen('Quad', [
			\ 'abort_noattach', 'abort_nosubject', 'abort_unmodified', 'bounce',
			\ 'catchup_newsgroup', 'copy', 'crypt_verify_sig', 'delete', 'fcc_attach',
			\ 'followup_to_poster', 'forward_edit', 'honor_followup_to', 'include',
			\ 'mime_forward', 'mime_forward_rest', 'move', 'pgp_mime_auto',
			\ 'pop_delete', 'pop_reconnect', 'postpone', 'post_moderated', 'print',
			\ 'quit', 'recall', 'reply_to', 'ssl_starttls'
			\ ], 0)

" CHECKED 2018-04-18
" Deprecated Quads
" List of DT_SYNONYM synonyms of Quads in MuttVars in init.h
call s:boolQuadGen('Quad', [
			\ 'mime_fwd', 'pgp_encrypt_self', 'pgp_verify_sig', 'smime_encrypt_self'
			\ ], 1)

" CHECKED 2018-04-18
" List of DT_NUMBER in MuttVars in init.h
syntax keyword muttrcVarNum	skipwhite contained
			\ connect_timeout debug_level history imap_keepalive imap_pipeline_depth
			\ imap_poll_timeout mail_check mail_check_stats_interval menu_context
			\ net_inc nm_db_limit nm_open_timeout nm_query_window_current_position
			\ nm_query_window_duration nntp_context nntp_poll pager_context
			\ pager_index_lines pgp_timeout pop_checkinterval read_inc reflow_wrap
			\ save_history score_threshold_delete score_threshold_flag
			\ score_threshold_read search_context sendmail_wait sidebar_component_depth
			\ sidebar_width skip_quoted_offset sleep_time smime_timeout
			\ ssl_min_dh_prime_bits timeout time_inc wrap wrap_headers write_inc
			\ nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax keyword muttrcVarDeprecatedNum	contained skipwhite
			\ wrapmargin
			\ nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr

" CHECKED 2018-04-18
" List of DT_STRING in MuttVars in init.h
" Special cases first, and all the rest at the end
" Formats themselves must be updated in their respective groups
" See s:escapesConditionals
syntax match muttrcVarStr	contained skipwhite 'my_[a-zA-Z0-9_]\+' nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax keyword muttrcVarStr	contained skipwhite alias_format nextgroup=muttrcVarEqualsAliasFmt
syntax keyword muttrcVarStr	contained skipwhite attach_format nextgroup=muttrcVarEqualsAttachFmt
syntax keyword muttrcVarStr	contained skipwhite compose_format nextgroup=muttrcVarEqualsComposeFmt
syntax keyword muttrcVarStr	contained skipwhite folder_format vfolder_format nextgroup=muttrcVarEqualsFolderFmt
syntax keyword muttrcVarStr	contained skipwhite attribution index_format message_format pager_format nextgroup=muttrcVarEqualsIdxFmt
" Deprecated format
syntax keyword muttrcVarDeprecatedStr	contained skipwhite hdr_format msg_format nextgroup=muttrcVarEqualsIdxFmt
syntax keyword muttrcVarStr	contained skipwhite mix_entry_format nextgroup=muttrcVarEqualsMixFmt
syntax keyword muttrcVarStr	contained skipwhite
			\ pgp_clearsign_command pgp_decode_command pgp_decrypt_command
			\ pgp_encrypt_only_command pgp_encrypt_sign_command pgp_export_command
			\ pgp_import_command pgp_list_pubring_command pgp_list_secring_command
			\ pgp_sign_command pgp_verify_command pgp_verify_key_command
			\ nextgroup=muttrcVarEqualsPGPCmdFmt
syntax keyword muttrcVarStr	contained skipwhite pgp_entry_format nextgroup=muttrcVarEqualsPGPFmt
syntax keyword muttrcVarStr	contained skipwhite pgp_getkeys_command nextgroup=muttrcVarEqualsPGPGetKeysFmt
syntax keyword muttrcVarStr	contained skipwhite query_format nextgroup=muttrcVarEqualsQueryFmt
syntax keyword muttrcVarStr	contained skipwhite
			\ smime_decrypt_command smime_encrypt_command smime_get_cert_command
			\ smime_get_cert_email_command smime_get_signer_cert_command
			\ smime_import_cert_command smime_pk7out_command smime_sign_command
			\ smime_verify_command smime_verify_opaque_command
			\ nextgroup=muttrcVarEqualsSmimeFmt
syntax keyword muttrcVarStr	contained skipwhite ts_icon_format ts_status_format status_format nextgroup=muttrcVarEqualsStatusFmt
" Deprecated format
syntax keyword muttrcVarDeprecatedStr	contained skipwhite xterm_icon xterm_title nextgroup=muttrcVarEqualsStatusFmt
syntax keyword muttrcVarStr	contained skipwhite date_format nextgroup=muttrcVarEqualsStrftimeFmt
syntax keyword muttrcVarStr	contained skipwhite group_index_format nextgroup=muttrcVarEqualsGrpIdxFmt
syntax keyword muttrcVarStr	contained skipwhite sidebar_format nextgroup=muttrcVarEqualsSdbFmt
syntax keyword muttrcVarStr	contained skipwhite
			\ assumed_charset attach_charset attach_sep attribution_locale charset
			\ config_charset content_type default_hook dsn_notify dsn_return
			\ empty_subject escape forward_attribution_intro forward_attribution_trailer
			\ forward_format header_cache_pagesize hidden_tags hostname
			\ imap_authenticators imap_delim_chars imap_headers imap_login imap_pass
			\ imap_user indent_string mailcap_path mark_macro_prefix mh_seq_flagged
			\ mh_seq_replied mh_seq_unseen mime_type_query_command newsgroups_charset
			\ news_server nm_default_uri nm_exclude_tags nm_query_type
			\ nm_query_window_current_search nm_query_window_timebase nm_record_tags
			\ nm_unread_tag nntp_authenticators nntp_pass nntp_user pgp_default_key
			\ pgp_sign_as pipe_sep pop_authenticators pop_host pop_pass pop_user
			\ postpone_encrypt_as post_indent_string preconnect realname send_charset
			\ show_multipart_alternative sidebar_delim_chars sidebar_divider_char
			\ sidebar_indent_string simple_search smime_default_key smime_encrypt_with
			\ smime_sign_as smime_sign_digest_alg smtp_authenticators smtp_pass smtp_url
			\ spam_separator ssl_ciphers tunnel
			\ nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
" Deprecated strings
syntax keyword muttrcVarDeprecatedStr	contained skipwhite
			\ forw_format indent_str pgp_self_encrypt_as post_indent_str
			\ smime_self_encrypt_as
			\ nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr

" CHECKED 2018-04-18
" List of DT_ADDRESS
syntax keyword muttrcVarStr	contained skipwhite envelope_from_address from nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
" List of DT_HCACHE
syntax keyword muttrcVarStr	contained skipwhite header_cache_backend nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
" List of DT_MAGIC
syntax keyword muttrcVarStr	contained skipwhite mbox_type nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
" List of DT_MBTABLE
syntax keyword muttrcVarStr	contained skipwhite flag_chars from_chars status_chars to_chars nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr

" CHECKED 2018-04-18
" List of DT_PATH
syntax keyword muttrcVarStr	contained skipwhite
			\ alias_file certificate_file debug_file display_filter editor entropy_file
			\ folder header_cache history_file inews ispell mbox message_cachedir mixmaster
			\ new_mail_command news_cache_dir newsrc pager postponed print_command
			\ query_command record sendmail shell signature smime_ca_location
			\ smime_certificates smime_keys spoolfile ssl_ca_certificates_file
			\ ssl_client_cert tmpdir trash visual
			\ nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr

" CHECKED 2018-04-18
" List of DT_REGEX
syntax keyword muttrcVarStr	contained skipwhite
			\ abort_noattach_regex gecos_mask mask pgp_decryption_okay pgp_good_sign
			\ quote_regex reply_regex smileys
			\ nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
" List of deprecated DT_PATH
syntax keyword muttrcVarDeprecatedStr	contained skipwhite print_cmd nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
" List of deprecated DT_REGEX
syntax keyword muttrcVarDeprecatedStr	contained skipwhite abort_noattach_regexp attach_keyword quote_regexp reply_regexp nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
" List of DT_SORT
syntax keyword muttrcVarStr	contained skipwhite
			\ pgp_sort_keys sidebar_sort_method sort sort_alias sort_aux sort_browser
			\ nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr

" CHECKED 2018-04-18
" List of commands in Commands in init.h
" Remember to remove hooks, they have already been dealt with
syntax keyword muttrcCommand	skipwhite charset-hook nextgroup=muttrcRXString
syntax keyword muttrcCommand	skipwhite unhook nextgroup=muttrcHooks
syntax keyword muttrcCommand	skipwhite spam nextgroup=muttrcSpamPattern
syntax keyword muttrcCommand	skipwhite nospam nextgroup=muttrcNoSpamPattern
syntax keyword muttrcCommand	skipwhite bind nextgroup=muttrcBindMenuList,muttrcBindMenuListNL
syntax keyword muttrcCommand	skipwhite macro	nextgroup=muttrcMacroMenuList,muttrcMacroMenuListNL
syntax keyword muttrcCommand	skipwhite alias nextgroup=muttrcAliasGroupDef,muttrcAliasKey,muttrcAliasNL
syntax keyword muttrcCommand	skipwhite unalias nextgroup=muttrcUnAliasKey,muttrcUnAliasNL
syntax keyword muttrcCommand	skipwhite set unset reset toggle nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr,muttrcVarDeprecatedBool,muttrcVarDeprecatedQuad,muttrcVarDeprecatedStr
syntax keyword muttrcCommand	skipwhite exec nextgroup=muttrcFunction
syntax keyword muttrcCommand	skipwhite
			\ alternative_order attachments auto_view finish hdr_order ifdef ifndef
			\ ignore lua lua-source mailboxes mailto_allow mime_lookup my_hdr push score
			\ setenv sidebar_whitelist source subjectrx subscribe-to tag-formats
			\ tag-transforms unalternative_order unattachments unauto_view uncolor
			\ unhdr_order unignore unmailboxes unmailto_allow unmime_lookup unmono
			\ unmy_hdr unscore unsetenv unsidebar_whitelist unsubjectrx unsubscribe-from
			\ unvirtual-mailboxes virtual-mailboxes

" CHECKED 2018-04-18
" List of functions in functions.h
syntax match muttrcFunction contained "\<accept\>"
syntax match muttrcFunction contained "\<append\>"
syntax match muttrcFunction contained "\<attach-file\>"
syntax match muttrcFunction contained "\<attach-key\>"
syntax match muttrcFunction contained "\<attach-message\>"
syntax match muttrcFunction contained "\<attach-news-message\>"
syntax match muttrcFunction contained "\<backspace\>"
syntax match muttrcFunction contained "\<backward-char\>"
syntax match muttrcFunction contained "\<backward-word\>"
syntax match muttrcFunction contained "\<bol\>"
syntax match muttrcFunction contained "\<bottom-page\>"
syntax match muttrcFunction contained "\<bottom\>"
syntax match muttrcFunction contained "\<bounce-message\>"
syntax match muttrcFunction contained "\<break-thread\>"
syntax match muttrcFunction contained "\<buffy-cycle\>"
syntax match muttrcFunction contained "\<buffy-list\>"
syntax match muttrcFunction contained "\<capitalize-word\>"
syntax match muttrcFunction contained "\<catchup\>"
syntax match muttrcFunction contained "\<chain-next\>"
syntax match muttrcFunction contained "\<chain-prev\>"
syntax match muttrcFunction contained "\<change-dir\>"
syntax match muttrcFunction contained "\<change-folder-readonly\>"
syntax match muttrcFunction contained "\<change-folder\>"
syntax match muttrcFunction contained "\<change-newsgroup-readonly\>"
syntax match muttrcFunction contained "\<change-newsgroup\>"
syntax match muttrcFunction contained "\<change-vfolder\>"
syntax match muttrcFunction contained "\<check-new\>"
syntax match muttrcFunction contained "\<check-traditional-pgp\>"
syntax match muttrcFunction contained "\<clear-flag\>"
syntax match muttrcFunction contained "\<collapse-all\>"
syntax match muttrcFunction contained "\<collapse-parts\>"
syntax match muttrcFunction contained "\<collapse-thread\>"
syntax match muttrcFunction contained "\<complete-query\>"
syntax match muttrcFunction contained "\<complete\>"
syntax match muttrcFunction contained "\<compose-to-sender\>"
syntax match muttrcFunction contained "\<copy-file\>"
syntax match muttrcFunction contained "\<copy-message\>"
syntax match muttrcFunction contained "\<create-alias\>"
syntax match muttrcFunction contained "\<create-mailbox\>"
syntax match muttrcFunction contained "\<current-bottom\>"
syntax match muttrcFunction contained "\<current-middle\>"
syntax match muttrcFunction contained "\<current-top\>"
syntax match muttrcFunction contained "\<decode-copy\>"
syntax match muttrcFunction contained "\<decode-save\>"
syntax match muttrcFunction contained "\<decrypt-copy\>"
syntax match muttrcFunction contained "\<decrypt-save\>"
syntax match muttrcFunction contained "\<delete-char\>"
syntax match muttrcFunction contained "\<delete-entry\>"
syntax match muttrcFunction contained "\<delete-mailbox\>"
syntax match muttrcFunction contained "\<delete-message\>"
syntax match muttrcFunction contained "\<delete-pattern\>"
syntax match muttrcFunction contained "\<delete-subthread\>"
syntax match muttrcFunction contained "\<delete-thread\>"
syntax match muttrcFunction contained "\<delete\>"
syntax match muttrcFunction contained "\<detach-file\>"
syntax match muttrcFunction contained "\<display-address\>"
syntax match muttrcFunction contained "\<display-filename\>"
syntax match muttrcFunction contained "\<display-message\>"
syntax match muttrcFunction contained "\<display-toggle-weed\>"
syntax match muttrcFunction contained "\<downcase-word\>"
syntax match muttrcFunction contained "\<edit-bcc\>"
syntax match muttrcFunction contained "\<edit-cc\>"
syntax match muttrcFunction contained "\<edit-description\>"
syntax match muttrcFunction contained "\<edit-encoding\>"
syntax match muttrcFunction contained "\<edit-fcc\>"
syntax match muttrcFunction contained "\<edit-file\>"
syntax match muttrcFunction contained "\<edit-followup-to\>"
syntax match muttrcFunction contained "\<edit-from\>"
syntax match muttrcFunction contained "\<edit-headers\>"
syntax match muttrcFunction contained "\<edit-label\>"
syntax match muttrcFunction contained "\<edit-message\>"
syntax match muttrcFunction contained "\<edit-mime\>"
syntax match muttrcFunction contained "\<edit-newsgroups\>"
syntax match muttrcFunction contained "\<edit-or-view-raw-message\>"
syntax match muttrcFunction contained "\<edit-raw-message\>"
syntax match muttrcFunction contained "\<edit-reply-to\>"
syntax match muttrcFunction contained "\<edit-subject\>"
syntax match muttrcFunction contained "\<edit-to\>"
syntax match muttrcFunction contained "\<edit-type\>"
syntax match muttrcFunction contained "\<edit-x-comment-to\>"
syntax match muttrcFunction contained "\<edit\>"
syntax match muttrcFunction contained "\<end-cond\>"
syntax match muttrcFunction contained "\<enter-command\>"
syntax match muttrcFunction contained "\<enter-mask\>"
syntax match muttrcFunction contained "\<entire-thread\>"
syntax match muttrcFunction contained "\<eol\>"
syntax match muttrcFunction contained "\<exit\>"
syntax match muttrcFunction contained "\<extract-keys\>"
syntax match muttrcFunction contained "\<fetch-mail\>"
syntax match muttrcFunction contained "\<filter-entry\>"
syntax match muttrcFunction contained "\<first-entry\>"
syntax match muttrcFunction contained "\<flag-message\>"
syntax match muttrcFunction contained "\<followup-message\>"
syntax match muttrcFunction contained "\<forget-passphrase\>"
syntax match muttrcFunction contained "\<forward-char\>"
syntax match muttrcFunction contained "\<forward-message\>"
syntax match muttrcFunction contained "\<forward-to-group\>"
syntax match muttrcFunction contained "\<forward-word\>"
syntax match muttrcFunction contained "\<get-attachment\>"
syntax match muttrcFunction contained "\<get-children\>"
syntax match muttrcFunction contained "\<get-message\>"
syntax match muttrcFunction contained "\<get-parent\>"
syntax match muttrcFunction contained "\<goto-folder\>"
syntax match muttrcFunction contained "\<goto-parent\>"
syntax match muttrcFunction contained "\<group-reply\>"
syntax match muttrcFunction contained "\<half-down\>"
syntax match muttrcFunction contained "\<half-up\>"
syntax match muttrcFunction contained "\<help\>"
syntax match muttrcFunction contained "\<history-down\>"
syntax match muttrcFunction contained "\<history-search\>"
syntax match muttrcFunction contained "\<history-up\>"
syntax match muttrcFunction contained "\<imap-fetch-mail\>"
syntax match muttrcFunction contained "\<imap-logout-all\>"
syntax match muttrcFunction contained "\<insert\>"
syntax match muttrcFunction contained "\<ispell\>"
syntax match muttrcFunction contained "\<jump\>"
syntax match muttrcFunction contained "\<kill-eol\>"
syntax match muttrcFunction contained "\<kill-eow\>"
syntax match muttrcFunction contained "\<kill-line\>"
syntax match muttrcFunction contained "\<kill-word\>"
syntax match muttrcFunction contained "\<last-entry\>"
syntax match muttrcFunction contained "\<limit-current-thread\>"
syntax match muttrcFunction contained "\<limit\>"
syntax match muttrcFunction contained "\<link-threads\>"
syntax match muttrcFunction contained "\<list-reply\>"
syntax match muttrcFunction contained "\<mail-key\>"
syntax match muttrcFunction contained "\<mail\>"
syntax match muttrcFunction contained "\<mark-as-new\>"
syntax match muttrcFunction contained "\<mark-message\>"
syntax match muttrcFunction contained "\<middle-page\>"
syntax match muttrcFunction contained "\<mix\>"
syntax match muttrcFunction contained "\<modify-labels-then-hide\>"
syntax match muttrcFunction contained "\<modify-labels\>"
syntax match muttrcFunction contained "\<modify-tags-then-hide\>"
syntax match muttrcFunction contained "\<modify-tags\>"
syntax match muttrcFunction contained "\<new-mime\>"
syntax match muttrcFunction contained "\<next-entry\>"
syntax match muttrcFunction contained "\<next-line\>"
syntax match muttrcFunction contained "\<next-new-then-unread\>"
syntax match muttrcFunction contained "\<next-new\>"
syntax match muttrcFunction contained "\<next-page\>"
syntax match muttrcFunction contained "\<next-subthread\>"
syntax match muttrcFunction contained "\<next-thread\>"
syntax match muttrcFunction contained "\<next-undeleted\>"
syntax match muttrcFunction contained "\<next-unread-mailbox\>"
syntax match muttrcFunction contained "\<next-unread\>"
syntax match muttrcFunction contained "\<noop\>"
syntax match muttrcFunction contained "\<parent-message\>"
syntax match muttrcFunction contained "\<pgp-menu\>"
syntax match muttrcFunction contained "\<pipe-entry\>"
syntax match muttrcFunction contained "\<pipe-message\>"
syntax match muttrcFunction contained "\<post-message\>"
syntax match muttrcFunction contained "\<postpone-message\>"
syntax match muttrcFunction contained "\<previous-entry\>"
syntax match muttrcFunction contained "\<previous-line\>"
syntax match muttrcFunction contained "\<previous-new-then-unread\>"
syntax match muttrcFunction contained "\<previous-new\>"
syntax match muttrcFunction contained "\<previous-page\>"
syntax match muttrcFunction contained "\<previous-subthread\>"
syntax match muttrcFunction contained "\<previous-thread\>"
syntax match muttrcFunction contained "\<previous-undeleted\>"
syntax match muttrcFunction contained "\<previous-unread\>"
syntax match muttrcFunction contained "\<print-entry\>"
syntax match muttrcFunction contained "\<print-message\>"
syntax match muttrcFunction contained "\<purge-message\>"
syntax match muttrcFunction contained "\<purge-thread\>"
syntax match muttrcFunction contained "\<quasi-delete\>"
syntax match muttrcFunction contained "\<query-append\>"
syntax match muttrcFunction contained "\<query\>"
syntax match muttrcFunction contained "\<quit\>"
syntax match muttrcFunction contained "\<quote-char\>"
syntax match muttrcFunction contained "\<read-subthread\>"
syntax match muttrcFunction contained "\<read-thread\>"
syntax match muttrcFunction contained "\<recall-message\>"
syntax match muttrcFunction contained "\<reconstruct-thread\>"
syntax match muttrcFunction contained "\<redraw-screen\>"
syntax match muttrcFunction contained "\<refresh\>"
syntax match muttrcFunction contained "\<reload-active\>"
syntax match muttrcFunction contained "\<rename-attachment\>"
syntax match muttrcFunction contained "\<rename-file\>"
syntax match muttrcFunction contained "\<rename-mailbox\>"
syntax match muttrcFunction contained "\<reply\>"
syntax match muttrcFunction contained "\<resend-message\>"
syntax match muttrcFunction contained "\<root-message\>"
syntax match muttrcFunction contained "\<save-entry\>"
syntax match muttrcFunction contained "\<save-message\>"
syntax match muttrcFunction contained "\<search-next\>"
syntax match muttrcFunction contained "\<search-opposite\>"
syntax match muttrcFunction contained "\<search-reverse\>"
syntax match muttrcFunction contained "\<search-toggle\>"
syntax match muttrcFunction contained "\<search\>"
syntax match muttrcFunction contained "\<select-entry\>"
syntax match muttrcFunction contained "\<select-new\>"
syntax match muttrcFunction contained "\<send-message\>"
syntax match muttrcFunction contained "\<set-flag\>"
syntax match muttrcFunction contained "\<shell-escape\>"
syntax match muttrcFunction contained "\<show-limit\>"
syntax match muttrcFunction contained "\<show-log-messages\>"
syntax match muttrcFunction contained "\<show-version\>"
syntax match muttrcFunction contained "\<sidebar-next-new\>"
syntax match muttrcFunction contained "\<sidebar-next\>"
syntax match muttrcFunction contained "\<sidebar-open\>"
syntax match muttrcFunction contained "\<sidebar-page-down\>"
syntax match muttrcFunction contained "\<sidebar-page-up\>"
syntax match muttrcFunction contained "\<sidebar-prev-new\>"
syntax match muttrcFunction contained "\<sidebar-prev\>"
syntax match muttrcFunction contained "\<sidebar-toggle-virtual\>"
syntax match muttrcFunction contained "\<sidebar-toggle-visible\>"
syntax match muttrcFunction contained "\<skip-quoted\>"
syntax match muttrcFunction contained "\<smime-menu\>"
syntax match muttrcFunction contained "\<sort-mailbox\>"
syntax match muttrcFunction contained "\<sort-reverse\>"
syntax match muttrcFunction contained "\<sort\>"
syntax match muttrcFunction contained "\<subscribe-pattern\>"
syntax match muttrcFunction contained "\<subscribe\>"
syntax match muttrcFunction contained "\<sync-mailbox\>"
syntax match muttrcFunction contained "\<tag-entry\>"
syntax match muttrcFunction contained "\<tag-message\>"
syntax match muttrcFunction contained "\<tag-pattern\>"
syntax match muttrcFunction contained "\<tag-prefix-cond\>"
syntax match muttrcFunction contained "\<tag-prefix\>"
syntax match muttrcFunction contained "\<tag-subthread\>"
syntax match muttrcFunction contained "\<tag-thread\>"
syntax match muttrcFunction contained "\<toggle-disposition\>"
syntax match muttrcFunction contained "\<toggle-mailboxes\>"
syntax match muttrcFunction contained "\<toggle-new\>"
syntax match muttrcFunction contained "\<toggle-quoted\>"
syntax match muttrcFunction contained "\<toggle-read\>"
syntax match muttrcFunction contained "\<toggle-recode\>"
syntax match muttrcFunction contained "\<toggle-subscribed\>"
syntax match muttrcFunction contained "\<toggle-unlink\>"
syntax match muttrcFunction contained "\<toggle-write\>"
syntax match muttrcFunction contained "\<top-page\>"
syntax match muttrcFunction contained "\<top\>"
syntax match muttrcFunction contained "\<transpose-chars\>"
syntax match muttrcFunction contained "\<uncatchup\>"
syntax match muttrcFunction contained "\<undelete-entry\>"
syntax match muttrcFunction contained "\<undelete-message\>"
syntax match muttrcFunction contained "\<undelete-pattern\>"
syntax match muttrcFunction contained "\<undelete-subthread\>"
syntax match muttrcFunction contained "\<undelete-thread\>"
syntax match muttrcFunction contained "\<unsubscribe-pattern\>"
syntax match muttrcFunction contained "\<unsubscribe\>"
syntax match muttrcFunction contained "\<untag-pattern\>"
syntax match muttrcFunction contained "\<upcase-word\>"
syntax match muttrcFunction contained "\<update-encoding\>"
syntax match muttrcFunction contained "\<verify-key\>"
syntax match muttrcFunction contained "\<vfolder-from-query\>"
syntax match muttrcFunction contained "\<vfolder-window-backward\>"
syntax match muttrcFunction contained "\<vfolder-window-forward\>"
syntax match muttrcFunction contained "\<view-attachments\>"
syntax match muttrcFunction contained "\<view-attach\>"
syntax match muttrcFunction contained "\<view-file\>"
syntax match muttrcFunction contained "\<view-mailcap\>"
syntax match muttrcFunction contained "\<view-name\>"
syntax match muttrcFunction contained "\<view-raw-message\>"
syntax match muttrcFunction contained "\<view-text\>"
syntax match muttrcFunction contained "\<what-key\>"
syntax match muttrcFunction contained "\<write-fcc\>"



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

highlight def link muttrcComment			Comment
highlight def link muttrcEscape				SpecialChar
highlight def link muttrcRXChars			SpecialChar
highlight def link muttrcString				String
highlight def link muttrcRXString			String
highlight def link muttrcRXString2			String
highlight def link muttrcSpecial			Special
highlight def link muttrcHooks				Type
highlight def link muttrcGroupFlag			Type
highlight def link muttrcGroupDef			Macro
highlight def link muttrcAddrDef			muttrcGroupFlag
highlight def link muttrcRXDef				muttrcGroupFlag
highlight def link muttrcRXPat				String
highlight def link muttrcAliasGroupName			Macro
highlight def link muttrcAliasKey	        	Identifier
highlight def link muttrcUnAliasKey			Identifier
highlight def link muttrcAliasEncEmail			Identifier
highlight def link muttrcAliasParens			Type
highlight def link muttrcSetNumAssignment		Number
highlight def link muttrcSetBoolAssignment		Boolean
highlight def link muttrcSetQuadAssignment		Boolean
highlight def link muttrcSetStrAssignment		String
highlight def link muttrcEmail				Special
highlight def link muttrcVariableInner			Special
highlight def link muttrcEscapedVariable		String
highlight def link muttrcHeader				Type
highlight def link muttrcKeySpecial			SpecialChar
highlight def link muttrcKey				Type
highlight def link muttrcKeyName			SpecialChar
highlight def link muttrcVarBool			Identifier
highlight def link muttrcVarQuad			Identifier
highlight def link muttrcVarNum				Identifier
highlight def link muttrcVarStr				Identifier
highlight def link muttrcMenu				Identifier
highlight def link muttrcCommand			Keyword
highlight def link muttrcMacroDescr			String
highlight def link muttrcAction				Macro
highlight def link muttrcBadAction			Error
highlight def link muttrcBindFunction			Error
highlight def link muttrcBindMenuList			Error
highlight def link muttrcFunction			Macro
highlight def link muttrcGroupKeyword			muttrcCommand
highlight def link muttrcGroupLine			Error
highlight def link muttrcSubscribeKeyword		muttrcCommand
highlight def link muttrcSubscribeLine			Error
highlight def link muttrcListsKeyword			muttrcCommand
highlight def link muttrcListsLine			Error
highlight def link muttrcAlternateKeyword		muttrcCommand
highlight def link muttrcAlternatesLine			Error
highlight def link muttrcAttachmentsLine		muttrcCommand
highlight def link muttrcAttachmentsFlag		Type
highlight def link muttrcAttachmentsMimeType		String
highlight def link muttrcColorLine			Error
highlight def link muttrcColorContext			Error
highlight def link muttrcColorContextI			Identifier
highlight def link muttrcColorContextH			Identifier
highlight def link muttrcColorKeyword			muttrcCommand
highlight def link muttrcColorField			Identifier
highlight def link muttrcColorCompose			Identifier
highlight def link muttrcColorComposeField		Identifier
highlight def link muttrcColor				Type
highlight def link muttrcColorFG			Error
highlight def link muttrcColorFGI			Error
highlight def link muttrcColorFGH			Error
highlight def link muttrcColorBG			Error
highlight def link muttrcColorBGI			Error
highlight def link muttrcColorBGH			Error
highlight def link muttrcMonoAttrib			muttrcColor
highlight def link muttrcMono				muttrcCommand
highlight def link muttrcSimplePat			Identifier
highlight def link muttrcSimplePatString		Macro
highlight def link muttrcSimplePatMetas			Special
highlight def link muttrcPattern			Error
highlight def link muttrcUnColorLine			Error
highlight def link muttrcUnColorKeyword			muttrcCommand
highlight def link muttrcUnColorIndex			Identifier
highlight def link muttrcShellString			muttrcEscape
highlight def link muttrcRXHooks			muttrcCommand
highlight def link muttrcRXHookNot			Type
highlight def link muttrcPatHooks			muttrcCommand
highlight def link muttrcPatHookNot			Type
highlight def link muttrcFormatConditionals2		Type
highlight def link muttrcIndexFormatStr			muttrcString
highlight def link muttrcIndexFormatEscapes		muttrcEscape
highlight def link muttrcIndexFormatConditionals	muttrcFormatConditionals2
highlight def link muttrcAliasFormatStr			muttrcString
highlight def link muttrcAliasFormatEscapes		muttrcEscape
highlight def link muttrcAttachFormatStr		muttrcString
highlight def link muttrcAttachFormatEscapes		muttrcEscape
highlight def link muttrcAttachFormatConditionals	muttrcFormatConditionals2
highlight def link muttrcComposeFormatStr		muttrcString
highlight def link muttrcComposeFormatEscapes		muttrcEscape
highlight def link muttrcFolderFormatStr		muttrcString
highlight def link muttrcFolderFormatEscapes		muttrcEscape
highlight def link muttrcFolderFormatConditionals	muttrcFormatConditionals2
highlight def link muttrcMixFormatStr			muttrcString
highlight def link muttrcMixFormatEscapes		muttrcEscape
highlight def link muttrcMixFormatConditionals		muttrcFormatConditionals2
highlight def link muttrcPGPFormatStr			muttrcString
highlight def link muttrcPGPFormatEscapes		muttrcEscape
highlight def link muttrcPGPFormatConditionals		muttrcFormatConditionals2
highlight def link muttrcPGPCmdFormatStr		muttrcString
highlight def link muttrcPGPCmdFormatEscapes		muttrcEscape
highlight def link muttrcPGPCmdFormatConditionals	muttrcFormatConditionals2
highlight def link muttrcStatusFormatStr		muttrcString
highlight def link muttrcStatusFormatEscapes		muttrcEscape
highlight def link muttrcStatusFormatConditionals	muttrcFormatConditionals2
highlight def link muttrcPGPGetKeysFormatStr		muttrcString
highlight def link muttrcPGPGetKeysFormatEscapes	muttrcEscape
highlight def link muttrcSmimeFormatStr			muttrcString
highlight def link muttrcSmimeFormatEscapes		muttrcEscape
highlight def link muttrcSmimeFormatConditionals	muttrcFormatConditionals2
highlight def link muttrcTimeEscapes			muttrcEscape
highlight def link muttrcPGPTimeEscapes			muttrcEscape
highlight def link muttrcStrftimeEscapes		Type
highlight def link muttrcStrftimeFormatStr		muttrcString
highlight def link muttrcFormatErrors			Error

highlight def link muttrcBindFunctionNL			SpecialChar
highlight def link muttrcBindKeyNL			SpecialChar
highlight def link muttrcBindMenuListNL			SpecialChar
highlight def link muttrcMacroDescrNL			SpecialChar
highlight def link muttrcMacroBodyNL			SpecialChar
highlight def link muttrcMacroKeyNL			SpecialChar
highlight def link muttrcMacroMenuListNL		SpecialChar
highlight def link muttrcColorMatchCountNL		SpecialChar
highlight def link muttrcColorNL			SpecialChar
highlight def link muttrcColorRXNL			SpecialChar
highlight def link muttrcColorBGNL			SpecialChar
highlight def link muttrcColorFGNL			SpecialChar
highlight def link muttrcAliasNameNL			SpecialChar
highlight def link muttrcAliasENNL			SpecialChar
highlight def link muttrcAliasNL			SpecialChar
highlight def link muttrcUnAliasNL			SpecialChar
highlight def link muttrcAliasGroupDefNL		SpecialChar
highlight def link muttrcAliasEncEmailNL		SpecialChar
highlight def link muttrcPatternNL			SpecialChar
highlight def link muttrcUnColorPatNL			SpecialChar
highlight def link muttrcUnColorAPNL			SpecialChar
highlight def link muttrcUnColorIndexNL			SpecialChar
highlight def link muttrcStringNL			SpecialChar

highlight def link muttrcVarDeprecatedBool		Error
highlight def link muttrcVarDeprecatedQuad		Error
highlight def link muttrcVarDeprecatedStr		Error


let b:current_syntax = "neomuttrc"

let &cpo = s:cpo_save
unlet s:cpo_save

" vim: ts=8 noet tw=100 sw=8 sts=0 ft=vim isk+=-

[ 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