annotate runtime/syntax/muttrc.vim @ 2531:c9022997af9e vim73

Runtime file updates.
author Bram Moolenaar <bram@vim.org>
date Mon, 09 Aug 2010 22:33:06 +0200
parents 0b796e045c42
children b7811ab264bf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim syntax file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 " Language: Mutt setup files
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
3 " Original: Preben 'Peppe' Guldberg <peppe-vim@wielders.org>
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
4 " Maintainer: Kyle Wheeler <kyle-muttrc.vim@memoryhole.net>
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
5 " Last Change: 9 Aug 2010
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
7 " This file covers mutt version 1.5.20 (and most of the mercurial tip)
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
8 " Included are also a few features from 1.4.2.1
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 " For version 5.x: Clear all syntax items
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 " For version 6.x: Quit when a syntax file was already loaded
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 if version < 600
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 syntax clear
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 elseif exists("b:current_syntax")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 finish
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 " Set the keyword characters
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 if version < 600
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 set isk=@,48-57,_,-
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 setlocal isk=@,48-57,_,-
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
25 syn match muttrcComment "^# .*$" contains=@Spell
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
26 syn match muttrcComment "^#[^ ].*$"
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
27 syn match muttrcComment "^#$"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 syn match muttrcComment "[^\\]#.*$"lc=1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 " Escape sequences (back-tick and pipe goes here too)
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
31 syn match muttrcEscape +\\[#tnr"'Cc ]+
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 syn match muttrcEscape +[`|]+
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
33 syn match muttrcEscape +\\$+
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 " The variables takes the following arguments
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
36 "syn match muttrcString contained "=\s*[^ #"'`]\+"lc=1 contains=muttrcEscape
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
37 syn region muttrcString contained keepend start=+"+ms=e skip=+\\"+ end=+"+ contains=muttrcEscape,muttrcCommand,muttrcAction,muttrcShellString
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
38 syn region muttrcString contained keepend start=+'+ms=e skip=+\\'+ end=+'+ contains=muttrcEscape,muttrcCommand,muttrcAction
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
39 syn match muttrcStringNL contained skipwhite skipnl "\s*\\$" nextgroup=muttrcString,muttrcStringNL
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
40
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
41 syn region muttrcShellString matchgroup=muttrcEscape keepend start=+`+ skip=+\\`+ end=+`+ contains=muttrcVarStr,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcCommand
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
42
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
43 syn match muttrcRXChars contained /[^\\][][.*?+]\+/hs=s+1
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
44 syn match muttrcRXChars contained /[][|()][.*?+]*/
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
45 syn match muttrcRXChars contained /['"]^/ms=s+1
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
46 syn match muttrcRXChars contained /$['"]/me=e-1
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
47 syn match muttrcRXChars contained /\\/
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
48 " Why does muttrcRXString2 work with one \ when muttrcRXString requires two?
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
49 syn region muttrcRXString contained skipwhite start=+'+ skip=+\\'+ end=+'+ contains=muttrcRXChars
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
50 syn region muttrcRXString contained skipwhite start=+"+ skip=+\\"+ end=+"+ contains=muttrcRXChars
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
51 syn region muttrcRXString contained skipwhite start=+[^ "'^]+ skip=+\\\s+ end=+\s+re=e-1 contains=muttrcRXChars
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
52 " For some reason, skip refuses to match backslashes here...
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
53 syn region muttrcRXString contained matchgroup=muttrcRXChars skipwhite start=+\^+ end=+[^\\]\s+re=e-1 contains=muttrcRXChars
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
54 syn region muttrcRXString contained matchgroup=muttrcRXChars skipwhite start=+\^+ end=+$\s+ contains=muttrcRXChars
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
55 syn region muttrcRXString2 contained skipwhite start=+'+ skip=+\'+ end=+'+ contains=muttrcRXChars
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
56 syn region muttrcRXString2 contained skipwhite start=+"+ skip=+\"+ end=+"+ contains=muttrcRXChars
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
57
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
58 " these must be kept synchronized with muttrcRXString, but are intended for
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
59 " muttrcRXHooks
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
60 syn region muttrcRXHookString contained keepend skipwhite start=+'+ skip=+\\'+ end=+'+ contains=muttrcRXString nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
61 syn region muttrcRXHookString contained keepend skipwhite start=+"+ skip=+\\"+ end=+"+ contains=muttrcRXString nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
62 syn region muttrcRXHookString contained keepend skipwhite start=+[^ "'^]+ skip=+\\\s+ end=+\s+re=e-1 contains=muttrcRXString nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
63 syn region muttrcRXHookString contained keepend skipwhite start=+\^+ end=+[^\\]\s+re=e-1 contains=muttrcRXString nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
64 syn region muttrcRXHookString contained keepend matchgroup=muttrcRXChars skipwhite start=+\^+ end=+$\s+ contains=muttrcRXString nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
65 syn match muttrcRXHookStringNL contained skipwhite skipnl "\s*\\$" nextgroup=muttrcRXHookString,muttrcRXHookStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
66
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
67 " these are exclusively for args lists (e.g. -rx pat pat pat ...)
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
68 syn region muttrcRXPat contained keepend skipwhite start=+'+ skip=+\\'+ end=+'\s*+ contains=muttrcRXString nextgroup=muttrcRXPat
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
69 syn region muttrcRXPat contained keepend skipwhite start=+"+ skip=+\\"+ end=+"\s*+ contains=muttrcRXString nextgroup=muttrcRXPat
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
70 syn match muttrcRXPat contained /[^-'"#!]\S\+/ skipwhite contains=muttrcRXChars nextgroup=muttrcRXPat
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
71 syn match muttrcRXDef contained "-rx\s\+" skipwhite nextgroup=muttrcRXPat
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 syn match muttrcSpecial +\(['"]\)!\1+
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
75 syn match muttrcSetStrAssignment contained skipwhite /=\s*\%(\\\?\$\)\?[0-9A-Za-z_-]\+/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr contains=muttrcVariable,muttrcEscapedVariable
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
76 syn region muttrcSetStrAssignment contained skipwhite keepend start=+=\s*"+hs=s+1 end=+"+ skip=+\\"+ nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr contains=muttrcString
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
77 syn region muttrcSetStrAssignment contained skipwhite keepend start=+=\s*'+hs=s+1 end=+'+ skip=+\\'+ nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr contains=muttrcString
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
78 syn match muttrcSetBoolAssignment contained skipwhite /=\s*\\\?\$\w\+/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr contains=muttrcVariable,muttrcEscapedVariable
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
79 syn match muttrcSetBoolAssignment contained skipwhite /=\s*\%(yes\|no\)/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
80 syn match muttrcSetBoolAssignment contained skipwhite /=\s*"\%(yes\|no\)"/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
81 syn match muttrcSetBoolAssignment contained skipwhite /=\s*'\%(yes\|no\)'/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
82 syn match muttrcSetQuadAssignment contained skipwhite /=\s*\\\?\$\w\+/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr contains=muttrcVariable,muttrcEscapedVariable
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
83 syn match muttrcSetQuadAssignment contained skipwhite /=\s*\%(ask-\)\?\%(yes\|no\)/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
84 syn match muttrcSetQuadAssignment contained skipwhite /=\s*"\%(ask-\)\?\%(yes\|no\)"/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
85 syn match muttrcSetQuadAssignment contained skipwhite /=\s*'\%(ask-\)\?\%(yes\|no\)'/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
86 syn match muttrcSetNumAssignment contained skipwhite /=\s*\\\?\$\w\+/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr contains=muttrcVariable,muttrcEscapedVariable
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
87 syn match muttrcSetNumAssignment contained skipwhite /=\s*\d\+/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
88 syn match muttrcSetNumAssignment contained skipwhite /=\s*"\d\+"/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
89 syn match muttrcSetNumAssignment contained skipwhite /=\s*'\d\+'/hs=s+1 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 " Now catch some email addresses and headers (purified version from mail.vim)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 syn match muttrcEmail "[a-zA-Z0-9._-]\+@[a-zA-Z0-9./-]\+"
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
93 syn match muttrcHeader "\<\%(From\|To\|C[Cc]\|B[Cc][Cc]\|Reply-To\|Subject\|Return-Path\|Received\|Date\|Replied\|Attach\)\>:\="
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
95 syn match muttrcKeySpecial contained +\%(\\[Cc'"]\|\^\|\\[01]\d\{2}\)+
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
96 syn match muttrcKey contained "\S\+" contains=muttrcKeySpecial,muttrcKeyName
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
97 syn region muttrcKey contained start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=muttrcKeySpecial,muttrcKeyName
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
98 syn region muttrcKey contained start=+'+ skip=+\\\\\|\\'+ end=+'+ contains=muttrcKeySpecial,muttrcKeyName
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
99 syn match muttrcKeyName contained "\<f\%(\d\|10\)\>"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 syn match muttrcKeyName contained "\\[trne]"
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
101 syn match muttrcKeyName contained "\c<\%(BackSpace\|Delete\|Down\|End\|Enter\|Esc\|Home\|Insert\|Left\|PageDown\|PageUp\|Return\|Right\|Space\|Tab\|Up\)>"
1668
0b796e045c42 updated for version 7.2b-000
vimboss
parents: 1621
diff changeset
102 syn match muttrcKeyName contained "<F[0-9]\+>"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
104 syn keyword muttrcVarBool skipwhite contained allow_8bit allow_ansi arrow_cursor ascii_chars askbcc askcc attach_split auto_tag autoedit beep beep_new nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
105 syn keyword muttrcVarBool skipwhite contained bounce_delivered braille_friendly check_new check_mbox_size nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
106 syn keyword muttrcVarBool skipwhite contained collapse_unread confirmappend confirmcreate crypt_autoencrypt nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
107 syn keyword muttrcVarBool skipwhite contained crypt_autopgp crypt_autosign crypt_autosmime crypt_replyencrypt nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
108 syn keyword muttrcVarBool skipwhite contained crypt_replysign crypt_replysignencrypted crypt_timestamp nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
109 syn keyword muttrcVarBool skipwhite contained crypt_use_gpgme crypt_use_pka delete_untag digest_collapse duplicate_threads nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
110 syn keyword muttrcVarBool skipwhite contained edit_hdrs edit_headers encode_from envelope_from fast_reply nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
111 syn keyword muttrcVarBool skipwhite contained fcc_clear followup_to force_name forw_decode nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
112 syn keyword muttrcVarBool skipwhite contained forw_decrypt forw_quote forward_decode forward_decrypt nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
113 syn keyword muttrcVarBool skipwhite contained forward_quote hdrs header help hidden_host hide_limited nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
114 syn keyword muttrcVarBool skipwhite contained hide_missing hide_thread_subject hide_top_limited nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
115 syn keyword muttrcVarBool skipwhite contained hide_top_missing honor_disposition ignore_linear_white_space ignore_list_reply_to imap_check_subscribed nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
116 syn keyword muttrcVarBool skipwhite contained imap_list_subscribed imap_passive imap_peek imap_servernoise nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
117 syn keyword muttrcVarBool skipwhite contained implicit_autoview include_onlyfirst keep_flagged nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
118 syn keyword muttrcVarBool skipwhite contained mailcap_sanitize maildir_header_cache_verify maildir_trash nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
119 syn keyword muttrcVarBool skipwhite contained mark_old markers menu_move_off menu_scroll message_cache_clean meta_key nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
120 syn keyword muttrcVarBool skipwhite contained metoo mh_purge mime_forward_decode narrow_tree pager_stop nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
121 syn keyword muttrcVarBool skipwhite contained pgp_auto_decode pgp_auto_traditional pgp_autoencrypt nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
122 syn keyword muttrcVarBool skipwhite contained pgp_autoinline pgp_autosign pgp_check_exit nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
123 syn keyword muttrcVarBool skipwhite contained pgp_create_traditional pgp_ignore_subkeys pgp_long_ids nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
124 syn keyword muttrcVarBool skipwhite contained pgp_replyencrypt pgp_replyinline pgp_replysign nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
125 syn keyword muttrcVarBool skipwhite contained pgp_replysignencrypted pgp_retainable_sigs pgp_show_unusable nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
126 syn keyword muttrcVarBool skipwhite contained pgp_strict_enc pgp_use_gpg_agent pipe_decode pipe_split nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
127 syn keyword muttrcVarBool skipwhite contained pop_auth_try_all pop_last print_decode print_split nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
128 syn keyword muttrcVarBool skipwhite contained prompt_after read_only reply_self resolve reverse_alias nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
129 syn keyword muttrcVarBool skipwhite contained reverse_name reverse_realname rfc2047_parameters save_address nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
130 syn keyword muttrcVarBool skipwhite contained save_empty save_name score sig_dashes sig_on_top nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
131 syn keyword muttrcVarBool skipwhite contained smart_wrap smime_ask_cert_label smime_decrypt_use_default_key nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
132 syn keyword muttrcVarBool skipwhite contained smime_is_default sort_re ssl_force_tls ssl_use_sslv2 nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
133 syn keyword muttrcVarBool skipwhite contained ssl_use_sslv3 ssl_use_tlsv1 ssl_usesystemcerts ssl_verify_dates ssl_verify_host status_on_top nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
134 syn keyword muttrcVarBool skipwhite contained strict_mime strict_threads suspend text_flowed thorough_search nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
135 syn keyword muttrcVarBool skipwhite contained thread_received tilde uncollapse_jump use_8bitmime nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
136 syn keyword muttrcVarBool skipwhite contained use_domain use_envelope_from use_from use_idn use_ipv6 nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
137 syn keyword muttrcVarBool skipwhite contained user_agent wait_key weed wrap_search write_bcc nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
139 syn keyword muttrcVarBool skipwhite contained noallow_8bit noallow_ansi noarrow_cursor noascii_chars noaskbcc nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
140 syn keyword muttrcVarBool skipwhite contained noaskcc noattach_split noauto_tag noautoedit nobeep nobeep_new nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
141 syn keyword muttrcVarBool skipwhite contained nobounce_delivered nobraille_friendly nocheck_new nocollapse_unread nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
142 syn keyword muttrcVarBool skipwhite contained noconfirmappend noconfirmcreate nocrypt_autoencrypt nocrypt_autopgp nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
143 syn keyword muttrcVarBool skipwhite contained nocrypt_autosign nocrypt_autosmime nocrypt_replyencrypt nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
144 syn keyword muttrcVarBool skipwhite contained nocrypt_replysign nocrypt_replysignencrypted nocrypt_timestamp nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
145 syn keyword muttrcVarBool skipwhite contained nocrypt_use_gpgme nodelete_untag nodigest_collapse noduplicate_threads nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
146 syn keyword muttrcVarBool skipwhite contained noedit_hdrs noedit_headers noencode_from noenvelope_from nofast_reply nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
147 syn keyword muttrcVarBool skipwhite contained nofcc_clear nofollowup_to noforce_name noforw_decode nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
148 syn keyword muttrcVarBool skipwhite contained noforw_decrypt noforw_quote noforward_decode noforward_decrypt nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
149 syn keyword muttrcVarBool skipwhite contained noforward_quote nohdrs noheader nohelp nohidden_host nohide_limited nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
150 syn keyword muttrcVarBool skipwhite contained nohide_missing nohide_thread_subject nohide_top_limited nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
151 syn keyword muttrcVarBool skipwhite contained nohide_top_missing nohonor_disposition noignore_list_reply_to noimap_check_subscribed nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
152 syn keyword muttrcVarBool skipwhite contained noimap_list_subscribed noimap_passive noimap_peek noimap_servernoise nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
153 syn keyword muttrcVarBool skipwhite contained noimplicit_autoview noinclude_onlyfirst nokeep_flagged nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
154 syn keyword muttrcVarBool skipwhite contained nomailcap_sanitize nomaildir_header_cache_verify nomaildir_trash nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
155 syn keyword muttrcVarBool skipwhite contained nomark_old nomarkers nomenu_move_off nomenu_scroll nometa_key nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
156 syn keyword muttrcVarBool skipwhite contained nometoo nomh_purge nomime_forward_decode nonarrow_tree nopager_stop nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
157 syn keyword muttrcVarBool skipwhite contained nopgp_auto_decode nopgp_auto_traditional nopgp_autoencrypt nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
158 syn keyword muttrcVarBool skipwhite contained nopgp_autoinline nopgp_autosign nopgp_check_exit nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
159 syn keyword muttrcVarBool skipwhite contained nopgp_create_traditional nopgp_ignore_subkeys nopgp_long_ids nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
160 syn keyword muttrcVarBool skipwhite contained nopgp_replyencrypt nopgp_replyinline nopgp_replysign nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
161 syn keyword muttrcVarBool skipwhite contained nopgp_replysignencrypted nopgp_retainable_sigs nopgp_show_unusable nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
162 syn keyword muttrcVarBool skipwhite contained nopgp_strict_enc nopgp_use_gpg_agent nopipe_decode nopipe_split nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
163 syn keyword muttrcVarBool skipwhite contained nopop_auth_try_all nopop_last noprint_decode noprint_split nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
164 syn keyword muttrcVarBool skipwhite contained noprompt_after noread_only noreply_self noresolve noreverse_alias nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
165 syn keyword muttrcVarBool skipwhite contained noreverse_name noreverse_realname norfc2047_parameters nosave_address nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
166 syn keyword muttrcVarBool skipwhite contained nosave_empty nosave_name noscore nosig_dashes nosig_on_top nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
167 syn keyword muttrcVarBool skipwhite contained nosmart_wrap nosmime_ask_cert_label nosmime_decrypt_use_default_key nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
168 syn keyword muttrcVarBool skipwhite contained nosmime_is_default nosort_re nossl_force_tls nossl_use_sslv2 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
169 syn keyword muttrcVarBool skipwhite contained nossl_use_sslv3 nossl_use_tlsv1 nossl_usesystemcerts nostatus_on_top nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
170 syn keyword muttrcVarBool skipwhite contained nostrict_threads nosuspend notext_flowed nothorough_search nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
171 syn keyword muttrcVarBool skipwhite contained nothread_received notilde nouncollapse_jump nouse_8bitmime nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
172 syn keyword muttrcVarBool skipwhite contained nouse_domain nouse_envelope_from nouse_from nouse_idn nouse_ipv6 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
173 syn keyword muttrcVarBool skipwhite contained nouser_agent nowait_key noweed nowrap_search nowrite_bcc nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
175 syn keyword muttrcVarBool skipwhite contained invallow_8bit invallow_ansi invarrow_cursor invascii_chars invaskbcc nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
176 syn keyword muttrcVarBool skipwhite contained invaskcc invattach_split invauto_tag invautoedit invbeep invbeep_new nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
177 syn keyword muttrcVarBool skipwhite contained invbounce_delivered invbraille_friendly invcheck_new invcollapse_unread nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
178 syn keyword muttrcVarBool skipwhite contained invconfirmappend invconfirmcreate invcrypt_autoencrypt invcrypt_autopgp nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
179 syn keyword muttrcVarBool skipwhite contained invcrypt_autosign invcrypt_autosmime invcrypt_replyencrypt nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
180 syn keyword muttrcVarBool skipwhite contained invcrypt_replysign invcrypt_replysignencrypted invcrypt_timestamp nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
181 syn keyword muttrcVarBool skipwhite contained invcrypt_use_gpgme invdelete_untag invdigest_collapse invduplicate_threads nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
182 syn keyword muttrcVarBool skipwhite contained invedit_hdrs invedit_headers invencode_from invenvelope_from invfast_reply nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
183 syn keyword muttrcVarBool skipwhite contained invfcc_clear invfollowup_to invforce_name invforw_decode nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
184 syn keyword muttrcVarBool skipwhite contained invforw_decrypt invforw_quote invforward_decode invforward_decrypt nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
185 syn keyword muttrcVarBool skipwhite contained invforward_quote invhdrs invheader invhelp invhidden_host invhide_limited nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
186 syn keyword muttrcVarBool skipwhite contained invhide_missing invhide_thread_subject invhide_top_limited nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
187 syn keyword muttrcVarBool skipwhite contained invhide_top_missing invhonor_disposition invignore_list_reply_to invimap_check_subscribed nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
188 syn keyword muttrcVarBool skipwhite contained invimap_list_subscribed invimap_passive invimap_peek invimap_servernoise nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
189 syn keyword muttrcVarBool skipwhite contained invimplicit_autoview invinclude_onlyfirst invkeep_flagged nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
190 syn keyword muttrcVarBool skipwhite contained invmailcap_sanitize invmaildir_header_cache_verify invmaildir_trash nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
191 syn keyword muttrcVarBool skipwhite contained invmark_old invmarkers invmenu_move_off invmenu_scroll invmeta_key nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
192 syn keyword muttrcVarBool skipwhite contained invmetoo invmh_purge invmime_forward_decode invnarrow_tree invpager_stop nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
193 syn keyword muttrcVarBool skipwhite contained invpgp_auto_decode invpgp_auto_traditional invpgp_autoencrypt nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
194 syn keyword muttrcVarBool skipwhite contained invpgp_autoinline invpgp_autosign invpgp_check_exit nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
195 syn keyword muttrcVarBool skipwhite contained invpgp_create_traditional invpgp_ignore_subkeys invpgp_long_ids nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
196 syn keyword muttrcVarBool skipwhite contained invpgp_replyencrypt invpgp_replyinline invpgp_replysign nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
197 syn keyword muttrcVarBool skipwhite contained invpgp_replysignencrypted invpgp_retainable_sigs invpgp_show_unusable nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
198 syn keyword muttrcVarBool skipwhite contained invpgp_strict_enc invpgp_use_gpg_agent invpipe_decode invpipe_split nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
199 syn keyword muttrcVarBool skipwhite contained invpop_auth_try_all invpop_last invprint_decode invprint_split nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
200 syn keyword muttrcVarBool skipwhite contained invprompt_after invread_only invreply_self invresolve invreverse_alias nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
201 syn keyword muttrcVarBool skipwhite contained invreverse_name invreverse_realname invrfc2047_parameters invsave_address nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
202 syn keyword muttrcVarBool skipwhite contained invsave_empty invsave_name invscore invsig_dashes invsig_on_top nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
203 syn keyword muttrcVarBool skipwhite contained invsmart_wrap invsmime_ask_cert_label invsmime_decrypt_use_default_key nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
204 syn keyword muttrcVarBool skipwhite contained invsmime_is_default invsort_re invssl_force_tls invssl_use_sslv2 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
205 syn keyword muttrcVarBool skipwhite contained invssl_use_sslv3 invssl_use_tlsv1 invssl_usesystemcerts invstatus_on_top nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
206 syn keyword muttrcVarBool skipwhite contained invstrict_threads invsuspend invtext_flowed invthorough_search nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
207 syn keyword muttrcVarBool skipwhite contained invthread_received invtilde invuncollapse_jump invuse_8bitmime nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
208 syn keyword muttrcVarBool skipwhite contained invuse_domain invuse_envelope_from invuse_from invuse_idn invuse_ipv6 nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
209 syn keyword muttrcVarBool skipwhite contained invuser_agent invwait_key invweed invwrap_search invwrite_bcc nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
211 syn keyword muttrcVarQuad skipwhite contained abort_nosubject abort_unmodified bounce copy nextgroup=muttrcSetQuadAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
212 syn keyword muttrcVarQuad skipwhite contained crypt_verify_sig delete fcc_attach forward_edit honor_followup_to nextgroup=muttrcSetQuadAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
213 syn keyword muttrcVarQuad skipwhite contained include mime_forward mime_forward_rest mime_fwd move nextgroup=muttrcSetQuadAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
214 syn keyword muttrcVarQuad skipwhite contained pgp_mime_auto pgp_verify_sig pop_delete pop_reconnect nextgroup=muttrcSetQuadAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
215 syn keyword muttrcVarQuad skipwhite contained postpone print quit recall reply_to ssl_starttls nextgroup=muttrcSetQuadAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
217 syn keyword muttrcVarQuad skipwhite contained noabort_nosubject noabort_unmodified nobounce nocopy nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
218 syn keyword muttrcVarQuad skipwhite contained nocrypt_verify_sig nodelete nofcc_attach noforward_edit nohonor_followup_to nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
219 syn keyword muttrcVarQuad skipwhite contained noinclude nomime_forward nomime_forward_rest nomime_fwd nomove nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
220 syn keyword muttrcVarQuad skipwhite contained nopgp_mime_auto nopgp_verify_sig nopop_delete nopop_reconnect nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
221 syn keyword muttrcVarQuad skipwhite contained nopostpone noprint noquit norecall noreply_to nossl_starttls nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
223 syn keyword muttrcVarQuad skipwhite contained invabort_nosubject invabort_unmodified invbounce invcopy nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
224 syn keyword muttrcVarQuad skipwhite contained invcrypt_verify_sig invdelete invfcc_attach invforward_edit invhonor_followup_to nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
225 syn keyword muttrcVarQuad skipwhite contained invinclude invmime_forward invmime_forward_rest invmime_fwd invmove nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
226 syn keyword muttrcVarQuad skipwhite contained invpgp_mime_auto invpgp_verify_sig invpop_delete invpop_reconnect nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
227 syn keyword muttrcVarQuad skipwhite contained invpostpone invprint invquit invrecall invreply_to invssl_starttls nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
229 syn keyword muttrcVarNum skipwhite contained connect_timeout history imap_keepalive imap_pipeline_depth mail_check nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
230 syn keyword muttrcVarNum skipwhite contained menu_context net_inc pager_context pager_index_lines pgp_timeout nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
231 syn keyword muttrcVarNum skipwhite contained pop_checkinterval read_inc save_history score_threshold_delete nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
232 syn keyword muttrcVarNum skipwhite contained score_threshold_flag score_threshold_read search_context sendmail_wait sleep_time nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
233 syn keyword muttrcVarNum skipwhite contained smime_timeout ssl_min_dh_prime_bits timeout time_inc wrap wrapmargin nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
234 syn keyword muttrcVarNum skipwhite contained write_inc nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
235
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
236 syn match muttrcFormatErrors contained /%./
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
237
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
238 syn match muttrcStrftimeEscapes contained /%[AaBbCcDdeFGgHhIjklMmnpRrSsTtUuVvWwXxYyZz+%]/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
239 syn match muttrcStrftimeEscapes contained /%E[cCxXyY]/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
240 syn match muttrcStrftimeEscapes contained /%O[BdeHImMSuUVwWy]/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
241
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
242 syn region muttrcIndexFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcIndexFormatEscapes,muttrcIndexFormatConditionals,muttrcFormatErrors,muttrcTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
243 syn region muttrcIndexFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcIndexFormatEscapes,muttrcIndexFormatConditionals,muttrcFormatErrors,muttrcTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
244 syn region muttrcQueryFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcQueryFormatEscapes,muttrcQueryFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
245 syn region muttrcAliasFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcAliasFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
246 syn region muttrcAliasFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcAliasFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
247 syn region muttrcAttachFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcAttachFormatEscapes,muttrcAttachFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
248 syn region muttrcAttachFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcAttachFormatEscapes,muttrcAttachFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
249 syn region muttrcComposeFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcComposeFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
250 syn region muttrcComposeFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcComposeFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
251 syn region muttrcFolderFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcFolderFormatEscapes,muttrcFolderFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
252 syn region muttrcFolderFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcFolderFormatEscapes,muttrcFolderFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
253 syn region muttrcMixFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcMixFormatEscapes,muttrcMixFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
254 syn region muttrcMixFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcMixFormatEscapes,muttrcMixFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
255 syn region muttrcPGPFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPGPFormatEscapes,muttrcPGPFormatConditionals,muttrcFormatErrors,muttrcPGPTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
256 syn region muttrcPGPFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPGPFormatEscapes,muttrcPGPFormatConditionals,muttrcFormatErrors,muttrcPGPTimeEscapes nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
257 syn region muttrcPGPCmdFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPGPCmdFormatEscapes,muttrcPGPCmdFormatConditionals,muttrcVariable,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
258 syn region muttrcPGPCmdFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPGPCmdFormatEscapes,muttrcPGPCmdFormatConditionals,muttrcVariable,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
259 syn region muttrcStatusFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcStatusFormatEscapes,muttrcStatusFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
260 syn region muttrcStatusFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcStatusFormatEscapes,muttrcStatusFormatConditionals,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
261 syn region muttrcPGPGetKeysFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPGPGetKeysFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
262 syn region muttrcPGPGetKeysFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPGPGetKeysFormatEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
263 syn region muttrcSmimeFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcSmimeFormatEscapes,muttrcSmimeFormatConditionals,muttrcVariable,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
264 syn region muttrcSmimeFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcSmimeFormatEscapes,muttrcSmimeFormatConditionals,muttrcVariable,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
265 syn region muttrcStrftimeFormatStr contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcStrftimeEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
266 syn region muttrcStrftimeFormatStr contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcStrftimeEscapes,muttrcFormatErrors nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
267
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
268 " The following info was pulled from hdr_format_str in hdrline.c
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
269 syn match muttrcIndexFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[aAbBcCdDeEfFHilLmMnNOPsStTuvXyYZ%]/
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
270 syn match muttrcIndexFormatEscapes contained /%[>|*]./
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
271 syn match muttrcIndexFormatConditionals contained /%?[EFHlLMNOXyY]?/ nextgroup=muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
272 " The following info was pulled from alias_format_str in addrbook.c
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
273 syn match muttrcAliasFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[afnrt%]/
1668
0b796e045c42 updated for version 7.2b-000
vimboss
parents: 1621
diff changeset
274 " The following info was pulled from query_format_str in query.c
0b796e045c42 updated for version 7.2b-000
vimboss
parents: 1621
diff changeset
275 syn match muttrcQueryFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[acent%]/
0b796e045c42 updated for version 7.2b-000
vimboss
parents: 1621
diff changeset
276 syn match muttrcQueryFormatConditionals contained /%?[e]?/ nextgroup=muttrcFormatConditionals2
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
277 " The following info was pulled from mutt_attach_fmt in recvattach.c
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
278 syn match muttrcAttachFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[CcDdefImMnQstTuX%]/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
279 syn match muttrcAttachFormatEscapes contained /%[>|*]./
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
280 syn match muttrcAttachFormatConditionals contained /%?[CcdDefInmMQstTuX]?/ nextgroup=muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
281 syn match muttrcFormatConditionals2 contained /[^?]*?/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
282 " The following info was pulled from compose_format_str in compose.c
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
283 syn match muttrcComposeFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[ahlv%]/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
284 syn match muttrcComposeFormatEscapes contained /%[>|*]./
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
285 " The following info was pulled from folder_format_str in browser.c
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
286 syn match muttrcFolderFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[CDdfFglNstu%]/
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
287 syn match muttrcFolderFormatEscapes contained /%[>|*]./
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
288 syn match muttrcFolderFormatConditionals contained /%?[N]?/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
289 " The following info was pulled from mix_entry_fmt in remailer.c
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
290 syn match muttrcMixFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[ncsa%]/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
291 syn match muttrcMixFormatConditionals contained /%?[ncsa]?/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
292 " The following info was pulled from crypt_entry_fmt in crypt-gpgme.c
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
293 " and pgp_entry_fmt in pgpkey.c (note that crypt_entry_fmt supports
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
294 " 'p', but pgp_entry_fmt does not).
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
295 syn match muttrcPGPFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[nkualfctp%]/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
296 syn match muttrcPGPFormatConditionals contained /%?[nkualfct]?/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
297 " The following info was pulled from _mutt_fmt_pgp_command in
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
298 " pgpinvoke.c
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
299 syn match muttrcPGPCmdFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[pfsar%]/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
300 syn match muttrcPGPCmdFormatConditionals contained /%?[pfsar]?/ nextgroup=muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
301 " The following info was pulled from status_format_str in status.c
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
302 syn match muttrcStatusFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[bdfFhlLmMnopPrsStuvV%]/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
303 syn match muttrcStatusFormatEscapes contained /%[>|*]./
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
304 syn match muttrcStatusFormatConditionals contained /%?[bdFlLmMnoptuV]?/ nextgroup=muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
305 " This matches the documentation, but directly contradicts the code
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
306 " (according to the code, this should be identical to the
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
307 " muttrcPGPCmdFormatEscapes
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
308 syn match muttrcPGPGetKeysFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[r%]/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
309 " The following info was pulled from _mutt_fmt_smime_command in
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
310 " smime.c
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
311 syn match muttrcSmimeFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[Cciskaf%]/
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
312 syn match muttrcSmimeFormatConditionals contained /%?[Cciskaf]?/ nextgroup=muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
313
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
314 syn region muttrcTimeEscapes contained start=+%{+ end=+}+ contains=muttrcStrftimeEscapes
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
315 syn region muttrcTimeEscapes contained start=+%\[+ end=+\]+ contains=muttrcStrftimeEscapes
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
316 syn region muttrcTimeEscapes contained start=+%(+ end=+)+ contains=muttrcStrftimeEscapes
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
317 syn region muttrcTimeEscapes contained start=+%<+ end=+>+ contains=muttrcStrftimeEscapes
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
318 syn region muttrcPGPTimeEscapes contained start=+%\[+ end=+\]+ contains=muttrcStrftimeEscapes
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
319
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
320 syn keyword muttrcVarStr contained skipwhite attribution index_format message_format pager_format nextgroup=muttrcVarEqualsIdxFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
321 syn match muttrcVarEqualsIdxFmt contained skipwhite "=" nextgroup=muttrcIndexFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
322 syn keyword muttrcVarStr contained skipwhite alias_format nextgroup=muttrcVarEqualsAliasFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
323 syn match muttrcVarEqualsAliasFmt contained skipwhite "=" nextgroup=muttrcAliasFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
324 syn keyword muttrcVarStr contained skipwhite attach_format nextgroup=muttrcVarEqualsAttachFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
325 syn match muttrcVarEqualsAttachFmt contained skipwhite "=" nextgroup=muttrcAttachFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
326 syn keyword muttrcVarStr contained skipwhite compose_format nextgroup=muttrcVarEqualsComposeFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
327 syn match muttrcVarEqualsComposeFmt contained skipwhite "=" nextgroup=muttrcComposeFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
328 syn keyword muttrcVarStr contained skipwhite folder_format nextgroup=muttrcVarEqualsFolderFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
329 syn match muttrcVarEqualsFolderFmt contained skipwhite "=" nextgroup=muttrcFolderFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
330 syn keyword muttrcVarStr contained skipwhite mix_entry_format nextgroup=muttrcVarEqualsMixFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
331 syn match muttrcVarEqualsMixFmt contained skipwhite "=" nextgroup=muttrcMixFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
332 syn keyword muttrcVarStr contained skipwhite pgp_entry_format nextgroup=muttrcVarEqualsPGPFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
333 syn match muttrcVarEqualsPGPFmt contained skipwhite "=" nextgroup=muttrcPGPFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
334 syn keyword muttrcVarStr contained skipwhite query_format nextgroup=muttrcVarEqualsQueryFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
335 syn match muttrcVarEqualsQueryFmt contained skipwhite "=" nextgroup=muttrcQueryFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
336 syn keyword muttrcVarStr contained skipwhite pgp_decode_command pgp_verify_command pgp_decrypt_command pgp_clearsign_command pgp_sign_command pgp_encrypt_sign_command pgp_encrypt_only_command pgp_import_command pgp_export_command pgp_verify_key_command pgp_list_secring_command pgp_list_pubring_command nextgroup=muttrcVarEqualsPGPCmdFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
337 syn match muttrcVarEqualsPGPCmdFmt contained skipwhite "=" nextgroup=muttrcPGPCmdFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
338 syn keyword muttrcVarStr contained skipwhite status_format nextgroup=muttrcVarEqualsStatusFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
339 syn match muttrcVarEqualsStatusFmt contained skipwhite "=" nextgroup=muttrcStatusFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
340 syn keyword muttrcVarStr contained skipwhite pgp_getkeys_command nextgroup=muttrcVarEqualsPGPGetKeysFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
341 syn match muttrcVarEqualsPGPGetKeysFmt contained skipwhite "=" nextgroup=muttrcPGPGetKeysFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
342 syn keyword muttrcVarStr contained skipwhite smime_decrypt_command smime_verify_command smime_verify_opaque_command smime_sign_command smime_sign_opaque_command smime_encrypt_command smime_pk7out_command smime_get_cert_command smime_get_signer_cert_command smime_import_cert_command smime_get_cert_email_command nextgroup=muttrcVarEqualsSmimeFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
343 syn match muttrcVarEqualsSmimeFmt contained skipwhite "=" nextgroup=muttrcSmimeFormatStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
344 syn keyword muttrcVarStr contained skipwhite date_format nextgroup=muttrcVarEqualsStrftimeFmt
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
345 syn match muttrcVarEqualsStrftimeFmt contained skipwhite "=" nextgroup=muttrcStrftimeFormatStr
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
346
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
347 syn match muttrcVPrefix contained /[?&]/ nextgroup=muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
348
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
349 syn match muttrcVarStr contained skipwhite 'my_[a-zA-Z0-9_]\+' nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
350 syn keyword muttrcVarStr contained skipwhite alias_file assumed_charset attach_charset attach_sep nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
351 syn keyword muttrcVarStr contained skipwhite certificate_file charset config_charset content_type nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
352 syn keyword muttrcVarStr contained skipwhite default_hook display_filter dotlock_program dsn_notify nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
353 syn keyword muttrcVarStr contained skipwhite dsn_return editor entropy_file envelope_from_address escape folder nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
354 syn keyword muttrcVarStr contained skipwhite forw_format forward_format from gecos_mask hdr_format nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
355 syn keyword muttrcVarStr contained skipwhite header_cache header_cache_compress header_cache_pagesize nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
356 syn keyword muttrcVarStr contained skipwhite history_file hostname imap_authenticators nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
357 syn keyword muttrcVarStr contained skipwhite imap_delim_chars imap_headers imap_idle imap_login imap_pass nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
358 syn keyword muttrcVarStr contained skipwhite imap_user indent_str indent_string ispell locale mailcap_path nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
359 syn keyword muttrcVarStr contained skipwhite mask mbox mbox_type message_cachedir mh_seq_flagged mh_seq_replied nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
360 syn keyword muttrcVarStr contained skipwhite mh_seq_unseen mixmaster msg_format pager nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
361 syn keyword muttrcVarStr contained skipwhite pgp_good_sign nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
362 syn keyword muttrcVarStr contained skipwhite pgp_mime_signature_filename nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
363 syn keyword muttrcVarStr contained skipwhite pgp_mime_signature_description pgp_sign_as nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
364 syn keyword muttrcVarStr contained skipwhite pgp_sort_keys nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
365 syn keyword muttrcVarStr contained skipwhite pipe_sep pop_authenticators pop_host pop_pass pop_user post_indent_str nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
366 syn keyword muttrcVarStr contained skipwhite post_indent_string postponed preconnect print_cmd print_command nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
367 syn keyword muttrcVarStr contained skipwhite query_command quote_regexp realname record reply_regexp send_charset nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
368 syn keyword muttrcVarStr contained skipwhite sendmail shell signature simple_search smileys smime_ca_location nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
369 syn keyword muttrcVarStr contained skipwhite smime_certificates smime_default_key nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
370 syn keyword muttrcVarStr contained skipwhite smime_encrypt_with nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
371 syn keyword muttrcVarStr contained skipwhite smime_keys smime_sign_as nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
372 syn keyword muttrcVarStr contained skipwhite smtp_url smtp_authenticators smtp_pass sort sort_alias sort_aux nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
373 syn keyword muttrcVarStr contained skipwhite sort_browser spam_separator spoolfile ssl_ca_certificates_file ssl_client_cert nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
374 syn keyword muttrcVarStr contained skipwhite status_chars tmpdir to_chars tunnel visual nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
375
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
376 " Present in 1.4.2.1 (pgp_create_traditional was a bool then)
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
377 syn keyword muttrcVarBool contained skipwhite imap_force_ssl noimap_force_ssl invimap_force_ssl nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
378 "syn keyword muttrcVarQuad contained pgp_create_traditional nopgp_create_traditional invpgp_create_traditional
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
379 syn keyword muttrcVarStr contained skipwhite alternates nextgroup=muttrcSetStrAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
380
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381 syn keyword muttrcMenu contained alias attach browser compose editor index pager postpone pgp mix query generic
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
382 syn match muttrcMenuList "\S\+" contained contains=muttrcMenu
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
383 syn match muttrcMenuCommas /,/ contained
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
384
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
385 syn keyword muttrcHooks contained skipwhite account-hook charset-hook iconv-hook message-hook folder-hook mbox-hook save-hook fcc-hook fcc-save-hook send-hook send2-hook reply-hook crypt-hook
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
386
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
387 syn keyword muttrcCommand auto_view alternative_order exec unalternative_order
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
388 syn keyword muttrcCommand hdr_order iconv-hook ignore mailboxes my_hdr unmailboxes
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
389 syn keyword muttrcCommand pgp-hook push score source unauto_view unhdr_order
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
390 syn keyword muttrcCommand unignore unmono unmy_hdr unscore
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
391 syn keyword muttrcCommand mime_lookup unmime_lookup ungroup
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
392 syn keyword muttrcCommand unalternative_order
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
393 syn keyword muttrcCommand skipwhite charset-hook nextgroup=muttrcRXString
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
394 syn keyword muttrcCommand skipwhite unhook nextgroup=muttrcHooks
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
395
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
396 syn keyword muttrcCommand skipwhite spam nextgroup=muttrcSpamPattern
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
397 syn region muttrcSpamPattern contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPattern nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
398 syn region muttrcSpamPattern contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPattern nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
399
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
400 syn keyword muttrcCommand skipwhite nospam nextgroup=muttrcNoSpamPattern
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
401 syn region muttrcNoSpamPattern contained skipwhite keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPattern
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
402 syn region muttrcNoSpamPattern contained skipwhite keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPattern
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
403
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
404 syn match muttrcAttachmentsMimeType contained "[*a-z0-9_-]\+/[*a-z0-9._-]\+\s*" skipwhite nextgroup=muttrcAttachmentsMimeType
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
405 syn match muttrcAttachmentsFlag contained "[+-]\%([AI]\|inline\|attachment\)\s\+" skipwhite nextgroup=muttrcAttachmentsMimeType
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
406 syn match muttrcAttachmentsLine "^\s*\%(un\)\?attachments\s\+" skipwhite nextgroup=muttrcAttachmentsFlag
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
407
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
408 syn match muttrcUnHighlightSpace contained "\%(\s\+\|\\$\)"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
409
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
410 syn keyword muttrcAsterisk contained *
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
411 syn keyword muttrcListsKeyword lists skipwhite nextgroup=muttrcGroupDef,muttrcComment
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
412 syn keyword muttrcListsKeyword unlists skipwhite nextgroup=muttrcAsterisk,muttrcComment
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
413
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
414 syn keyword muttrcSubscribeKeyword subscribe nextgroup=muttrcGroupDef,muttrcComment
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
415 syn keyword muttrcSubscribeKeyword unsubscribe nextgroup=muttrcAsterisk,muttrcComment
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
416
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
417 syn keyword muttrcAlternateKeyword contained alternates unalternates
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
418 syn region muttrcAlternatesLine keepend start=+^\s*\%(un\)\?alternates\s+ skip=+\\$+ end=+$+ contains=muttrcAlternateKeyword,muttrcGroupDef,muttrcRXPat,muttrcUnHighlightSpace,muttrcComment
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
419
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
420 syn match muttrcVariable contained "\\\@<!\$[a-zA-Z_-]\+"
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
421 syn match muttrcEscapedVariable contained "\\\$[a-zA-Z_-]\+"
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
422
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
423 syn match muttrcBadAction contained "[^<>]\+" contains=muttrcEmail
1668
0b796e045c42 updated for version 7.2b-000
vimboss
parents: 1621
diff changeset
424 syn match muttrcFunction contained "\<\%(attach\|bounce\|copy\|delete\|display\|flag\|forward\|parent\|pipe\|postpone\|print\|recall\|resend\|save\|send\|tag\|undelete\)-message\>"
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
425 syn match muttrcFunction contained "\<\%(delete\|next\|previous\|read\|tag\|break\|undelete\)-thread\>"
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
426 syn match muttrcFunction contained "\<link-threads\>"
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
427 syn match muttrcFunction contained "\<\%(backward\|capitalize\|downcase\|forward\|kill\|upcase\)-word\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
428 syn match muttrcFunction contained "\<\%(delete\|filter\|first\|last\|next\|pipe\|previous\|print\|save\|select\|tag\|undelete\)-entry\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
429 syn match muttrcFunction contained "\<attach-\%(file\|key\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
430 syn match muttrcFunction contained "\<change-\%(dir\|folder\|folder-readonly\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
431 syn match muttrcFunction contained "\<check-\%(new\|traditional-pgp\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
432 syn match muttrcFunction contained "\<current-\%(bottom\|middle\|top\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
433 syn match muttrcFunction contained "\<decode-\%(copy\|save\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
434 syn match muttrcFunction contained "\<delete-\%(char\|pattern\|subthread\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
435 syn match muttrcFunction contained "\<display-\%(address\|toggle-weed\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
436 syn match muttrcFunction contained "\<edit\%(-\%(bcc\|cc\|description\|encoding\|fcc\|file\|from\|headers\|mime\|reply-to\|subject\|to\|type\)\)\?\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
437 syn match muttrcFunction contained "\<enter-\%(command\|mask\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
438 syn match muttrcFunction contained "\<half-\%(up\|down\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
439 syn match muttrcFunction contained "\<history-\%(up\|down\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
440 syn match muttrcFunction contained "\<kill-\%(eol\|eow\|line\)\>"
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
441 syn match muttrcFunction contained "\<next-\%(line\|new\%(-then-unread\)\?\|page\|subthread\|undeleted\|unread\|unread-mailbox\)\>"
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
442 syn match muttrcFunction contained "\<previous-\%(line\|new\%(-then-unread\)\?\|page\|subthread\|undeleted\|unread\)\>"
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
443 syn match muttrcFunction contained "\<search\%(-\%(next\|opposite\|reverse\|toggle\)\)\?\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
444 syn match muttrcFunction contained "\<show-\%(limit\|version\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
445 syn match muttrcFunction contained "\<sort-\%(mailbox\|reverse\)\>"
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
446 syn match muttrcFunction contained "\<tag-\%(pattern\|\%(sub\)\?thread\|prefix\%(-cond\)\?\)\>"
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
447 syn match muttrcFunction contained "\<end-cond\>"
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
448 syn match muttrcFunction contained "\<toggle-\%(mailboxes\|new\|quoted\|subscribed\|unlink\|write\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
449 syn match muttrcFunction contained "\<undelete-\%(pattern\|subthread\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
450 syn match muttrcFunction contained "\<collapse-\%(parts\|thread\|all\)\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
451 syn match muttrcFunction contained "\<view-\%(attach\|attachments\|file\|mailcap\|name\|text\)\>"
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
452 syn match muttrcFunction contained "\<\%(backspace\|backward-char\|bol\|bottom\|bottom-page\|buffy-cycle\|clear-flag\|complete\%(-query\)\?\|copy-file\|create-alias\|detach-file\|eol\|exit\|extract-keys\|\%(imap-\)\?fetch-mail\|forget-passphrase\|forward-char\|group-reply\|help\|ispell\|jump\|limit\|list-reply\|mail\|mail-key\|mark-as-new\|middle-page\|new-mime\|noop\|pgp-menu\|query\|query-append\|quit\|quote-char\|read-subthread\|redraw-screen\|refresh\|rename-file\|reply\|select-new\|set-flag\|shell-escape\|skip-quoted\|sort\|subscribe\|sync-mailbox\|top\|top-page\|transpose-chars\|unsubscribe\|untag-pattern\|verify-key\|what-key\|write-fcc\)\>"
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
453 syn match muttrcAction contained "<[^>]\{-}>" contains=muttrcBadAction,muttrcFunction,muttrcKeyName
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
454
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
455 syn keyword muttrcCommand set skipwhite nextgroup=muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
456 syn keyword muttrcCommand unset skipwhite nextgroup=muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
457 syn keyword muttrcCommand reset skipwhite nextgroup=muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
458 syn keyword muttrcCommand toggle skipwhite nextgroup=muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
459
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
460 " First, functions that take regular expressions:
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
461 syn match muttrcRXHookNot contained /!\s*/ skipwhite nextgroup=muttrcRXHookString,muttrcRXHookStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
462 syn match muttrcRXHooks /\<\%(account\|folder\)-hook\>/ skipwhite nextgroup=muttrcRXHookNot,muttrcRXHookString,muttrcRXHookStringNL
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
463
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
464 " Now, functions that take patterns
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
465 syn match muttrcPatHookNot contained /!\s*/ skipwhite nextgroup=muttrcPattern
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
466 syn match muttrcPatHooks /\<\%(mbox\|crypt\)-hook\>/ skipwhite nextgroup=muttrcPatHookNot,muttrcPattern
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
467 syn match muttrcPatHooks /\<\%(message\|reply\|send\|send2\|save\|\|fcc\%(-save\)\?\)-hook\>/ skipwhite nextgroup=muttrcPatHookNot,muttrcOptPattern
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
468
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
469 syn match muttrcBindFunction contained /\S\+\>/ skipwhite contains=muttrcFunction
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
470 syn match muttrcBindFunctionNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcBindFunction,muttrcBindFunctionNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
471 syn match muttrcBindKey contained /\S\+/ skipwhite contains=muttrcKey nextgroup=muttrcBindFunction,muttrcBindFunctionNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
472 syn match muttrcBindKeyNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcBindKey,muttrcBindKeyNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
473 syn match muttrcBindMenuList contained /\S\+/ skipwhite contains=muttrcMenu,muttrcMenuCommas nextgroup=muttrcBindKey,muttrcBindKeyNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
474 syn match muttrcBindMenuListNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcBindMenuList,muttrcBindMenuListNL
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
475 syn keyword muttrcCommand skipwhite bind nextgroup=muttrcBindMenuList,muttrcBindMenuListNL
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
476
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
477 syn region muttrcMacroDescr contained keepend skipwhite start=+\s*\S+ms=e skip=+\\ + end=+ \|$+me=s
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
478 syn region muttrcMacroDescr contained keepend skipwhite start=+'+ms=e skip=+\\'+ end=+'+me=s
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
479 syn region muttrcMacroDescr contained keepend skipwhite start=+"+ms=e skip=+\\"+ end=+"+me=s
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
480 syn match muttrcMacroDescrNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroDescr,muttrcMacroDescrNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
481 syn region muttrcMacroBody contained skipwhite start="\S" skip='\\ \|\\$' end=' \|$' contains=muttrcEscape,muttrcSet,muttrcUnset,muttrcReset,muttrcToggle,muttrcCommand,muttrcAction nextgroup=muttrcMacroDescr,muttrcMacroDescrNL
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
482 syn 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
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
483 syn 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
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
484 syn match muttrcMacroBodyNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroBody,muttrcMacroBodyNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
485 syn match muttrcMacroKey contained /\S\+/ skipwhite contains=muttrcKey nextgroup=muttrcMacroBody,muttrcMacroBodyNL
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
486 syn match muttrcMacroKeyNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroKey,muttrcMacroKeyNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
487 syn match muttrcMacroMenuList contained /\S\+/ skipwhite contains=muttrcMenu,muttrcMenuCommas nextgroup=muttrcMacroKey,muttrcMacroKeyNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
488 syn match muttrcMacroMenuListNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroMenuList,muttrcMacroMenuListNL
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
489 syn keyword muttrcCommand skipwhite macro nextgroup=muttrcMacroMenuList,muttrcMacroMenuListNL
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
490
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
491 syn match muttrcAddrContent contained "[a-zA-Z0-9._-]\+@[a-zA-Z0-9./-]\+\s*" skipwhite contains=muttrcEmail nextgroup=muttrcAddrContent
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
492 syn region muttrcAddrContent contained start=+'+ end=+'\s*+ skip=+\\'+ skipwhite contains=muttrcEmail nextgroup=muttrcAddrContent
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
493 syn region muttrcAddrContent contained start=+"+ end=+"\s*+ skip=+\\"+ skipwhite contains=muttrcEmail nextgroup=muttrcAddrContent
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
494 syn match muttrcAddrDef contained "-addr\s\+" skipwhite nextgroup=muttrcAddrContent
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
495
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
496 syn match muttrcGroupFlag contained "-group"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
497 syn region muttrcGroupDef contained start="-group\s\+" skip="\\$" end="\s" skipwhite keepend contains=muttrcGroupFlag,muttrcUnHighlightSpace
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
498
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
499 syn keyword muttrcGroupKeyword contained group ungroup
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
500 syn region muttrcGroupLine keepend start=+^\s*\%(un\)\?group\s+ skip=+\\$+ end=+$+ contains=muttrcGroupKeyword,muttrcGroupDef,muttrcAddrDef,muttrcRXDef,muttrcUnHighlightSpace,muttrcComment
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
501
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
502 syn match muttrcAliasGroupName contained /\w\+/ skipwhite nextgroup=muttrcAliasGroupDef,muttrcAliasKey,muttrcAliasNL
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
503 syn match muttrcAliasGroupDefNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasGroupName,muttrcAliasGroupDefNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
504 syn match muttrcAliasGroupDef contained /\s*-group/ skipwhite nextgroup=muttrcAliasGroupName,muttrcAliasGroupDefNL contains=muttrcGroupFlag
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
505 syn match muttrcAliasComma contained /,/ skipwhite nextgroup=muttrcAliasEmail,muttrcAliasEncEmail,muttrcAliasNameNoParens,muttrcAliasENNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
506 syn match muttrcAliasEmail contained /\S\+@\S\+/ contains=muttrcEmail nextgroup=muttrcAliasName,muttrcAliasNameNL skipwhite
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
507 syn match muttrcAliasEncEmail contained /<[^>]\+>/ contains=muttrcEmail nextgroup=muttrcAliasComma
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
508 syn match muttrcAliasEncEmailNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasEncEmail,muttrcAliasEncEmailNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
509 syn match muttrcAliasNameNoParens contained /[^<(@]\+\s\+/ nextgroup=muttrcAliasEncEmail,muttrcAliasEncEmailNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
510 syn region muttrcAliasName contained matchgroup=Type start=/(/ end=/)/ skipwhite
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
511 syn match muttrcAliasNameNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasName,muttrcAliasNameNL
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
512 syn match muttrcAliasENNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasEmail,muttrcAliasEncEmail,muttrcAliasNameNoParens,muttrcAliasENNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
513 syn match muttrcAliasKey contained /\s*[^- \t]\S\+/ skipwhite nextgroup=muttrcAliasEmail,muttrcAliasEncEmail,muttrcAliasNameNoParens,muttrcAliasENNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
514 syn match muttrcAliasNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasGroupDef,muttrcAliasKey,muttrcAliasNL
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
515 syn keyword muttrcCommand skipwhite alias nextgroup=muttrcAliasGroupDef,muttrcAliasKey,muttrcAliasNL
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
516
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
517 syn match muttrcUnAliasKey contained "\s*\w\+\s*" skipwhite nextgroup=muttrcUnAliasKey,muttrcUnAliasNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
518 syn match muttrcUnAliasNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcUnAliasKey,muttrcUnAliasNL
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
519 syn keyword muttrcCommand skipwhite unalias nextgroup=muttrcUnAliasKey,muttrcUnAliasNL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
520
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
521 syn match muttrcSimplePat contained "!\?\^\?[~][ADEFgGklNOpPQRSTuUvV=$]"
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
522 syn match muttrcSimplePat contained "!\?\^\?[~][mnXz]\s*\%([<>-][0-9]\+[kM]\?\|[0-9]\+[kM]\?[-]\%([0-9]\+[kM]\?\)\?\)"
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
523 syn 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
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
524 syn match muttrcSimplePat contained "!\?\^\?[~][bBcCefhHiLstxy]\s*" nextgroup=muttrcSimplePatRXContainer
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
525 syn match muttrcSimplePat contained "!\?\^\?[%][bBcCefhHiLstxy]\s*" nextgroup=muttrcSimplePatString
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
526 syn match muttrcSimplePat contained "!\?\^\?[=][bh]\s*" nextgroup=muttrcSimplePatString
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
527 syn region muttrcSimplePat contained keepend start=+!\?\^\?[~](+ end=+)+ contains=muttrcSimplePat
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
528 "syn match muttrcSimplePat contained /'[^~=%][^']*/ contains=muttrcRXString
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
529 syn region muttrcSimplePatString contained keepend start=+"+ end=+"+ skip=+\\"+
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
530 syn region muttrcSimplePatString contained keepend start=+'+ end=+'+ skip=+\\'+
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
531 syn region muttrcSimplePatString contained keepend start=+[^ "']+ skip=+\\ + end=+\s+re=e-1
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
532 syn region muttrcSimplePatRXContainer contained keepend start=+"+ end=+"+ skip=+\\"+ contains=muttrcRXString
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
533 syn region muttrcSimplePatRXContainer contained keepend start=+'+ end=+'+ skip=+\\'+ contains=muttrcRXString
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
534 syn region muttrcSimplePatRXContainer contained keepend start=+[^ "']+ skip=+\\ + end=+\s+re=e-1 contains=muttrcRXString
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
535 syn match muttrcSimplePatMetas contained /[(|)]/
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
536
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
537 syn match muttrcOptSimplePat contained skipwhite /[~=%!(^].*/ contains=muttrcSimplePat,muttrcSimplePatMetas
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
538 syn match muttrcOptSimplePat contained skipwhite /[^~=%!(^].*/ contains=muttrcRXString
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
539 syn region muttrcOptPattern contained matchgroup=Type keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcOptSimplePat,muttrcUnHighlightSpace nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
540 syn region muttrcOptPattern contained matchgroup=Type keepend skipwhite start=+'+ skip=+\\'+ end=+'+ contains=muttrcOptSimplePat,muttrcUnHighlightSpace nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
541 syn region muttrcOptPattern contained keepend skipwhite start=+[~](+ end=+)+ skip=+\\)+ contains=muttrcSimplePat nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
542 syn match muttrcOptPattern contained skipwhite /[~][A-Za-z]/ contains=muttrcSimplePat nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
543 syn match muttrcOptPattern contained skipwhite /[.]/ nextgroup=muttrcString,muttrcStringNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
544 " Keep muttrcPattern and muttrcOptPattern synchronized
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
545 syn region muttrcPattern contained matchgroup=Type keepend skipwhite start=+"+ skip=+\\"+ end=+"+ contains=muttrcSimplePat,muttrcUnHighlightSpace,muttrcSimplePatMetas
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
546 syn region muttrcPattern contained matchgroup=Type keepend skipwhite start=+'+ skip=+\\'+ end=+'+ contains=muttrcSimplePat,muttrcUnHighlightSpace,muttrcSimplePatMetas
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
547 syn region muttrcPattern contained keepend skipwhite start=+[~](+ end=+)+ skip=+\\)+ contains=muttrcSimplePat
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
548 syn match muttrcPattern contained skipwhite /[~][A-Za-z]/ contains=muttrcSimplePat
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
549 syn match muttrcPattern contained skipwhite /[.]/
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
550 syn region muttrcPatternInner contained keepend start=+"[~=%!(^]+ms=s+1 skip=+\\"+ end=+"+me=e-1 contains=muttrcSimplePat,muttrcUnHighlightSpace,muttrcSimplePatMetas
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
551 syn region muttrcPatternInner contained keepend start=+'[~=%!(^]+ms=s+1 skip=+\\'+ end=+'+me=e-1 contains=muttrcSimplePat,muttrcUnHighlightSpace,muttrcSimplePatMetas
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
553 " Colour definitions takes object, foreground and background arguments (regexps excluded).
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
554 syn match muttrcColorMatchCount contained "[0-9]\+"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
555 syn match muttrcColorMatchCountNL contained skipwhite skipnl "\s*\\$" nextgroup=muttrcColorMatchCount,muttrcColorMatchCountNL
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
556 syn region muttrcColorRXPat contained start=+\s*'+ skip=+\\'+ end=+'\s*+ keepend skipwhite contains=muttrcRXString2 nextgroup=muttrcColorMatchCount,muttrcColorMatchCountNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
557 syn region muttrcColorRXPat contained start=+\s*"+ skip=+\\"+ end=+"\s*+ keepend skipwhite contains=muttrcRXString2 nextgroup=muttrcColorMatchCount,muttrcColorMatchCountNL
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
558 syn keyword muttrcColorField contained attachment body bold error hdrdefault header index indicator markers message normal quoted search signature status tilde tree underline
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
559 syn match muttrcColorField contained "\<quoted\d\=\>"
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
560 syn keyword muttrcColor contained black blue cyan default green magenta red white yellow
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
561 syn keyword muttrcColor contained brightblack brightblue brightcyan brightdefault brightgreen brightmagenta brightred brightwhite brightyellow
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
562 syn match muttrcColor contained "\<\%(bright\)\=color\d\{1,2}\>"
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
563 " Now for the structure of the color line
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
564 syn match muttrcColorRXNL contained skipnl "\s*\\$" nextgroup=muttrcColorRXPat,muttrcColorRXNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
565 syn match muttrcColorBG contained /\s*[$]\?\w\+/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcColorRXPat,muttrcColorRXNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
566 syn match muttrcColorBGNL contained skipnl "\s*\\$" nextgroup=muttrcColorBG,muttrcColorBGNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
567 syn match muttrcColorFG contained /\s*[$]\?\w\+/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcColorBG,muttrcColorBGNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
568 syn match muttrcColorFGNL contained skipnl "\s*\\$" nextgroup=muttrcColorFG,muttrcColorFGNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
569 syn match muttrcColorContext contained /\s*[$]\?\w\+/ contains=muttrcColorField,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcColorFG,muttrcColorFGNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
570 syn match muttrcColorNL contained skipnl "\s*\\$" nextgroup=muttrcColorContext,muttrcColorNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
571 syn match muttrcColorKeyword contained /^\s*color\s\+/ nextgroup=muttrcColorContext,muttrcColorNL
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
572 syn region muttrcColorLine keepend start=/^\s*color\s\+\%(index\|header\)\@!/ skip=+\\$+ end=+$+ contains=muttrcColorKeyword,muttrcComment,muttrcUnHighlightSpace
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
573 " Now for the structure of the color index line
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
574 syn match muttrcPatternNL contained skipnl "\s*\\$" nextgroup=muttrcPattern,muttrcPatternNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
575 syn match muttrcColorBGI contained /\s*[$]\?\w\+\s*/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcPattern,muttrcPatternNL
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
576 syn match muttrcColorBGNLI contained skipnl "\s*\\$" nextgroup=muttrcColorBGI,muttrcColorBGNLI
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
577 syn match muttrcColorFGI contained /\s*[$]\?\w\+/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcColorBGI,muttrcColorBGNLI
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
578 syn match muttrcColorFGNLI contained skipnl "\s*\\$" nextgroup=muttrcColorFGI,muttrcColorFGNLI
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
579 syn match muttrcColorContextI contained /\s*\<index\>/ contains=muttrcUnHighlightSpace nextgroup=muttrcColorFGI,muttrcColorFGNLI
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
580 syn match muttrcColorNLI contained skipnl "\s*\\$" nextgroup=muttrcColorContextI,muttrcColorNLI
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
581 syn match muttrcColorKeywordI contained skipwhite /\<color\>/ nextgroup=muttrcColorContextI,muttrcColorNLI
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
582 syn region muttrcColorLine keepend skipwhite start=/\<color\s\+index\>/ skip=+\\$+ end=+$+ contains=muttrcColorKeywordI,muttrcComment,muttrcUnHighlightSpace
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
583 " Now for the structure of the color header line
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
584 syn match muttrcRXPatternNL contained skipnl "\s*\\$" nextgroup=muttrcRXString,muttrcRXPatternNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
585 syn match muttrcColorBGH contained /\s*[$]\?\w\+\s*/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcRXString,muttrcRXPatternNL
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
586 syn match muttrcColorBGNLH contained skipnl "\s*\\$" nextgroup=muttrcColorBGH,muttrcColorBGNLH
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
587 syn match muttrcColorFGH contained /\s*[$]\?\w\+/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcColorBGH,muttrcColorBGNLH
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
588 syn match muttrcColorFGNLH contained skipnl "\s*\\$" nextgroup=muttrcColorFGH,muttrcColorFGNLH
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
589 syn match muttrcColorContextH contained /\s*\<header\>/ contains=muttrcUnHighlightSpace nextgroup=muttrcColorFGH,muttrcColorFGNLH
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
590 syn match muttrcColorNLH contained skipnl "\s*\\$" nextgroup=muttrcColorContextH,muttrcColorNLH
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
591 syn match muttrcColorKeywordH contained skipwhite /\<color\>/ nextgroup=muttrcColorContextH,muttrcColorNLH
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
592 syn region muttrcColorLine keepend skipwhite start=/\<color\s\+header\>/ skip=+\\$+ end=+$+ contains=muttrcColorKeywordH,muttrcComment,muttrcUnHighlightSpace
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
593 " And now color's brother:
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
594 syn region muttrcUnColorPatterns contained skipwhite start=+\s*'+ end=+'+ skip=+\\'+ contains=muttrcPattern nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
595 syn region muttrcUnColorPatterns contained skipwhite start=+\s*"+ end=+"+ skip=+\\"+ contains=muttrcPattern nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
596 syn match muttrcUnColorPatterns contained skipwhite /\s*[^'"\s]\S\*/ contains=muttrcPattern nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
597 syn match muttrcUnColorPatNL contained skipwhite skipnl /\s*\\$/ nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
598 syn match muttrcUnColorAll contained skipwhite /[*]/
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
599 syn match muttrcUnColorAPNL contained skipwhite skipnl /\s*\\$/ nextgroup=muttrcUnColorPatterns,muttrcUnColorAll,muttrcUnColorAPNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
600 syn match muttrcUnColorIndex contained skipwhite /\s*index\s\+/ nextgroup=muttrcUnColorPatterns,muttrcUnColorAll,muttrcUnColorAPNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
601 syn match muttrcUnColorIndexNL contained skipwhite skipnl /\s*\\$/ nextgroup=muttrcUnColorIndex,muttrcUnColorIndexNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
602 syn match muttrcUnColorKeyword contained skipwhite /^\s*uncolor\s\+/ nextgroup=muttrcUnColorIndex,muttrcUnColorIndexNL
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
603 syn region muttrcUnColorLine keepend start=+^\s*uncolor\s+ skip=+\\$+ end=+$+ contains=muttrcUnColorKeyword,muttrcComment,muttrcUnHighlightSpace
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
604
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
605 " Mono are almost like color (ojects inherited from color)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
606 syn keyword muttrcMonoAttrib contained bold none normal reverse standout underline
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
607 syn keyword muttrcMono contained mono skipwhite nextgroup=muttrcColorField
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
608 syn match muttrcMonoLine "^\s*mono\s\+\S\+" skipwhite nextgroup=muttrcMonoAttrib contains=muttrcMono
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
610 " Define the default highlighting.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
611 " For version 5.7 and earlier: only when not done already
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
612 " For version 5.8 and later: only when an item doesn't have highlighting yet
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
613 if version >= 508 || !exists("did_muttrc_syntax_inits")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
614 if version < 508
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
615 let did_muttrc_syntax_inits = 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616 command -nargs=+ HiLink hi link <args>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
617 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
618 command -nargs=+ HiLink hi def link <args>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
620
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621 HiLink muttrcComment Comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
622 HiLink muttrcEscape SpecialChar
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
623 HiLink muttrcRXChars SpecialChar
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
624 HiLink muttrcString String
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
625 HiLink muttrcRXString String
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
626 HiLink muttrcRXString2 String
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
627 HiLink muttrcSpecial Special
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
628 HiLink muttrcHooks Type
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
629 HiLink muttrcGroupFlag Type
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
630 HiLink muttrcGroupDef Macro
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
631 HiLink muttrcAddrDef muttrcGroupFlag
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
632 HiLink muttrcRXDef muttrcGroupFlag
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
633 HiLink muttrcRXPat String
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
634 HiLink muttrcAliasGroupName Macro
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
635 HiLink muttrcAliasKey Identifier
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
636 HiLink muttrcUnAliasKey Identifier
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
637 HiLink muttrcAliasEncEmail Identifier
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
638 HiLink muttrcAliasParens Type
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
639 HiLink muttrcSetNumAssignment Number
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
640 HiLink muttrcSetBoolAssignment Boolean
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
641 HiLink muttrcSetQuadAssignment Boolean
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
642 HiLink muttrcSetStrAssignment String
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
643 HiLink muttrcEmail Special
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
644 HiLink muttrcVariable Special
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
645 HiLink muttrcEscapedVariable String
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
646 HiLink muttrcHeader Type
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
647 HiLink muttrcKeySpecial SpecialChar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
648 HiLink muttrcKey Type
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
649 HiLink muttrcKeyName SpecialChar
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650 HiLink muttrcVarBool Identifier
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651 HiLink muttrcVarQuad Identifier
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
652 HiLink muttrcVarNum Identifier
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 HiLink muttrcVarStr Identifier
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
654 HiLink muttrcMenu Identifier
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 HiLink muttrcCommand Keyword
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
656 HiLink muttrcMacroDescr String
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
657 HiLink muttrcAction Macro
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
658 HiLink muttrcBadAction Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
659 HiLink muttrcBindFunction Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
660 HiLink muttrcBindMenuList Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
661 HiLink muttrcFunction Macro
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
662 HiLink muttrcGroupKeyword muttrcCommand
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
663 HiLink muttrcGroupLine Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
664 HiLink muttrcSubscribeKeyword muttrcCommand
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
665 HiLink muttrcSubscribeLine Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
666 HiLink muttrcListsKeyword muttrcCommand
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
667 HiLink muttrcListsLine Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
668 HiLink muttrcAlternateKeyword muttrcCommand
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
669 HiLink muttrcAlternatesLine Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
670 HiLink muttrcAttachmentsLine muttrcCommand
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
671 HiLink muttrcAttachmentsFlag Type
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
672 HiLink muttrcAttachmentsMimeType String
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
673 HiLink muttrcColorLine Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
674 HiLink muttrcColorContext Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
675 HiLink muttrcColorContextI Identifier
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
676 HiLink muttrcColorContextH Identifier
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
677 HiLink muttrcColorKeyword muttrcCommand
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
678 HiLink muttrcColorKeywordI muttrcColorKeyword
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
679 HiLink muttrcColorKeywordH muttrcColorKeyword
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
680 HiLink muttrcColorField Identifier
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
681 HiLink muttrcColor Type
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
682 HiLink muttrcColorFG Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
683 HiLink muttrcColorFGI Error
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
684 HiLink muttrcColorFGH Error
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
685 HiLink muttrcColorBG Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
686 HiLink muttrcColorBGI Error
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
687 HiLink muttrcColorBGH Error
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
688 HiLink muttrcMonoAttrib muttrcColor
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
689 HiLink muttrcMono muttrcCommand
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
690 HiLink muttrcSimplePat Identifier
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
691 HiLink muttrcSimplePatString Macro
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
692 HiLink muttrcSimplePatMetas Special
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
693 HiLink muttrcPattern Error
842
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
694 HiLink muttrcUnColorLine Error
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
695 HiLink muttrcUnColorKeyword muttrcCommand
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
696 HiLink muttrcUnColorIndex Identifier
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
697 HiLink muttrcShellString muttrcEscape
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
698 HiLink muttrcRXHooks muttrcCommand
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
699 HiLink muttrcRXHookNot Type
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
700 HiLink muttrcPatHooks muttrcCommand
a209672376fd updated for version 7.0f
vimboss
parents: 835
diff changeset
701 HiLink muttrcPatHookNot Type
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
702 HiLink muttrcFormatConditionals2 Type
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
703 HiLink muttrcIndexFormatStr muttrcString
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
704 HiLink muttrcIndexFormatEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
705 HiLink muttrcIndexFormatConditionals muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
706 HiLink muttrcAliasFormatStr muttrcString
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
707 HiLink muttrcAliasFormatEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
708 HiLink muttrcAttachFormatStr muttrcString
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
709 HiLink muttrcAttachFormatEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
710 HiLink muttrcAttachFormatConditionals muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
711 HiLink muttrcComposeFormatStr muttrcString
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
712 HiLink muttrcComposeFormatEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
713 HiLink muttrcFolderFormatStr muttrcString
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
714 HiLink muttrcFolderFormatEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
715 HiLink muttrcFolderFormatConditionals muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
716 HiLink muttrcMixFormatStr muttrcString
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
717 HiLink muttrcMixFormatEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
718 HiLink muttrcMixFormatConditionals muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
719 HiLink muttrcPGPFormatStr muttrcString
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
720 HiLink muttrcPGPFormatEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
721 HiLink muttrcPGPFormatConditionals muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
722 HiLink muttrcPGPCmdFormatStr muttrcString
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
723 HiLink muttrcPGPCmdFormatEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
724 HiLink muttrcPGPCmdFormatConditionals muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
725 HiLink muttrcStatusFormatStr muttrcString
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
726 HiLink muttrcStatusFormatEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
727 HiLink muttrcStatusFormatConditionals muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
728 HiLink muttrcPGPGetKeysFormatStr muttrcString
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
729 HiLink muttrcPGPGetKeysFormatEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
730 HiLink muttrcSmimeFormatStr muttrcString
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
731 HiLink muttrcSmimeFormatEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
732 HiLink muttrcSmimeFormatConditionals muttrcFormatConditionals2
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
733 HiLink muttrcTimeEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
734 HiLink muttrcPGPTimeEscapes muttrcEscape
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
735 HiLink muttrcStrftimeEscapes Type
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
736 HiLink muttrcStrftimeFormatStr muttrcString
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
737 HiLink muttrcFormatErrors Error
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
738
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
739 HiLink muttrcBindFunctionNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
740 HiLink muttrcBindKeyNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
741 HiLink muttrcBindMenuListNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
742 HiLink muttrcMacroDescrNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
743 HiLink muttrcMacroBodyNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
744 HiLink muttrcMacroKeyNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
745 HiLink muttrcMacroMenuListNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
746 HiLink muttrcColorMatchCountNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
747 HiLink muttrcColorNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
748 HiLink muttrcColorRXNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
749 HiLink muttrcColorBGNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
750 HiLink muttrcColorFGNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
751 HiLink muttrcAliasNameNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
752 HiLink muttrcAliasENNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
753 HiLink muttrcAliasNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
754 HiLink muttrcUnAliasNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
755 HiLink muttrcAliasGroupDefNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
756 HiLink muttrcAliasEncEmailNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
757 HiLink muttrcPatternNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
758 HiLink muttrcUnColorPatNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
759 HiLink muttrcUnColorAPNL SpecialChar
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
760 HiLink muttrcUnColorIndexNL SpecialChar
2531
c9022997af9e Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
761 HiLink muttrcStringNL SpecialChar
1121
e63691e7c504 updated for version 7.1a
vimboss
parents: 842
diff changeset
762
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
763 delcommand HiLink
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
764 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
765
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
766 let b:current_syntax = "muttrc"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
767
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 1121
diff changeset
768 "EOF vim: ts=8 noet tw=100 sw=8 sts=0 ft=vim