blob: 068609c9a59e537714d374008a965ba9c08d4ebb [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim syntax file
2" Language: Mutt setup files
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00003" Original: Preben 'Peppe' Guldberg <peppe-vim@wielders.org>
4" Maintainer: Kyle Wheeler <kyle-muttrc.vim@memoryhole.net>
Bram Moolenaarc236c162008-07-13 17:41:49 +00005" Last Change: 12 Jun 2008
Bram Moolenaar071d4272004-06-13 20:20:40 +00006
Bram Moolenaarc236c162008-07-13 17:41:49 +00007" This file covers mutt version 1.5.18 (and most of the mercurial tip)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00008" Included are also a few features from 1.4.2.1
Bram Moolenaar071d4272004-06-13 20:20:40 +00009
10" For version 5.x: Clear all syntax items
11" For version 6.x: Quit when a syntax file was already loaded
12if version < 600
13 syntax clear
14elseif exists("b:current_syntax")
15 finish
16endif
17
18" Set the keyword characters
19if version < 600
20 set isk=@,48-57,_,-
21else
22 setlocal isk=@,48-57,_,-
23endif
24
Bram Moolenaar9964e462007-05-05 17:54:07 +000025syn match muttrcComment "^# .*$" contains=@Spell
26syn match muttrcComment "^#[^ ].*$"
27syn match muttrcComment "^#$"
Bram Moolenaar071d4272004-06-13 20:20:40 +000028syn match muttrcComment "[^\\]#.*$"lc=1
29
30" Escape sequences (back-tick and pipe goes here too)
Bram Moolenaar9964e462007-05-05 17:54:07 +000031syn match muttrcEscape +\\[#tnr"'Cc ]+
Bram Moolenaar071d4272004-06-13 20:20:40 +000032syn match muttrcEscape +[`|]+
Bram Moolenaar446cb832008-06-24 21:56:24 +000033syn match muttrcEscape +\\$+
Bram Moolenaar071d4272004-06-13 20:20:40 +000034
35" The variables takes the following arguments
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000036syn match muttrcString "=\s*[^ #"'`]\+"lc=1 contains=muttrcEscape
Bram Moolenaar446cb832008-06-24 21:56:24 +000037syn region muttrcString start=+"+ms=e skip=+\\"+ end=+"+ contains=muttrcEscape,muttrcSet,muttrcUnset,muttrcReset,muttrcToggle,muttrcCommand,muttrcAction,muttrcShellString
Bram Moolenaar9964e462007-05-05 17:54:07 +000038syn region muttrcString start=+'+ms=e skip=+\\'+ end=+'+ contains=muttrcEscape,muttrcSet,muttrcUnset,muttrcReset,muttrcToggle,muttrcCommand,muttrcAction
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000039
40syn region muttrcShellString matchgroup=muttrcEscape keepend start=+`+ skip=+\\`+ end=+`+ contains=muttrcVarStr,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcCommand,muttrcSet
41
42syn match muttrcRXChars contained /[^\\][][.*?+]\+/hs=s+1
43syn match muttrcRXChars contained /[][|()][.*?+]*/
Bram Moolenaar446cb832008-06-24 21:56:24 +000044syn match muttrcRXChars contained /['"]^/ms=s+1
45syn match muttrcRXChars contained /$['"]/me=e-1
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000046syn match muttrcRXChars contained /\\/
Bram Moolenaar9964e462007-05-05 17:54:07 +000047" Why does muttrcRXString2 work with one \ when muttrcRXString requires two?
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000048syn region muttrcRXString contained start=+'+ skip=+\\'+ end=+'+ contains=muttrcRXChars
49syn region muttrcRXString contained start=+"+ skip=+\\"+ end=+"+ contains=muttrcRXChars
Bram Moolenaar9964e462007-05-05 17:54:07 +000050syn region muttrcRXString2 contained start=+'+ skip=+\'+ end=+'+ contains=muttrcRXChars
51syn region muttrcRXString2 contained start=+"+ skip=+\"+ end=+"+ contains=muttrcRXChars
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000052
53syn region muttrcRXPat contained start=+'+ skip=+\\'+ end=+'\s*+ keepend skipwhite contains=muttrcRXString nextgroup=muttrcRXPat
54syn region muttrcRXPat contained start=+"+ skip=+\\"+ end=+"\s*+ keepend skipwhite contains=muttrcRXString nextgroup=muttrcRXPat
55syn match muttrcRXPat contained /[^-'"#!]\S\+\%(\s\|$\)/ skipwhite contains=muttrcRXChars nextgroup=muttrcRXPat
56syn match muttrcRXDef contained "-rx\s\+" skipwhite nextgroup=muttrcRXPat
Bram Moolenaar071d4272004-06-13 20:20:40 +000057
58syn match muttrcSpecial +\(['"]\)!\1+
59
60" Numbers and Quadoptions may be surrounded by " or '
61syn match muttrcNumber /=\s*\d\+/lc=1
62syn match muttrcNumber /=\s*"\d\+"/lc=1
63syn match muttrcNumber /=\s*'\d\+'/lc=1
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000064syn match muttrcQuadopt +=\s*\%(ask-\)\=\%(yes\|no\)+lc=1
65syn match muttrcQuadopt +=\s*"\%(ask-\)\=\%(yes\|no\)"+lc=1
66syn match muttrcQuadopt +=\s*'\%(ask-\)\=\%(yes\|no\)'+lc=1
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
68" Now catch some email addresses and headers (purified version from mail.vim)
69syn match muttrcEmail "[a-zA-Z0-9._-]\+@[a-zA-Z0-9./-]\+"
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000070syn match muttrcHeader "\<\%(From\|To\|C[Cc]\|B[Cc][Cc]\|Reply-To\|Subject\|Return-Path\|Received\|Date\|Replied\|Attach\)\>:\="
Bram Moolenaar071d4272004-06-13 20:20:40 +000071
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000072syn match muttrcKeySpecial contained +\%(\\[Cc'"]\|\^\|\\[01]\d\{2}\)+
73syn match muttrcKey contained "\S\+" contains=muttrcKeySpecial,muttrcKeyName
74syn region muttrcKey contained start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=muttrcKeySpecial,muttrcKeyName
75syn region muttrcKey contained start=+'+ skip=+\\\\\|\\'+ end=+'+ contains=muttrcKeySpecial,muttrcKeyName
76syn match muttrcKeyName contained "\<f\%(\d\|10\)\>"
Bram Moolenaar071d4272004-06-13 20:20:40 +000077syn match muttrcKeyName contained "\\[trne]"
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000078syn match muttrcKeyName contained "\c<\%(BackSpace\|Delete\|Down\|End\|Enter\|Esc\|Home\|Insert\|Left\|PageDown\|PageUp\|Return\|Right\|Space\|Tab\|Up\)>"
Bram Moolenaarc236c162008-07-13 17:41:49 +000079syn match muttrcKeyName contained "<F[0-9]\+>"
Bram Moolenaar071d4272004-06-13 20:20:40 +000080
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000081syn keyword muttrcVarBool contained allow_8bit allow_ansi arrow_cursor ascii_chars askbcc
82syn keyword muttrcVarBool contained askcc attach_split auto_tag autoedit beep beep_new
Bram Moolenaar446cb832008-06-24 21:56:24 +000083syn keyword muttrcVarBool contained bounce_delivered braille_friendly check_new check_mbox_size collapse_unread
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000084syn keyword muttrcVarBool contained confirmappend confirmcreate crypt_autoencrypt crypt_autopgp
85syn keyword muttrcVarBool contained crypt_autosign crypt_autosmime crypt_replyencrypt
86syn keyword muttrcVarBool contained crypt_replysign crypt_replysignencrypted crypt_timestamp
Bram Moolenaar446cb832008-06-24 21:56:24 +000087syn keyword muttrcVarBool contained crypt_use_gpgme crypt_use_pka delete_untag digest_collapse duplicate_threads
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000088syn keyword muttrcVarBool contained edit_hdrs edit_headers encode_from envelope_from fast_reply
89syn keyword muttrcVarBool contained fcc_attach fcc_clear followup_to force_name forw_decode
90syn keyword muttrcVarBool contained forw_decrypt forw_quote forward_decode forward_decrypt
91syn keyword muttrcVarBool contained forward_quote hdrs header help hidden_host hide_limited
92syn keyword muttrcVarBool contained hide_missing hide_thread_subject hide_top_limited
Bram Moolenaar446cb832008-06-24 21:56:24 +000093syn keyword muttrcVarBool contained hide_top_missing ignore_linear_white_space ignore_list_reply_to imap_check_subscribed
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000094syn keyword muttrcVarBool contained imap_list_subscribed imap_passive imap_peek imap_servernoise
95syn keyword muttrcVarBool contained implicit_autoview include_onlyfirst keep_flagged
96syn keyword muttrcVarBool contained mailcap_sanitize maildir_header_cache_verify maildir_trash
Bram Moolenaar446cb832008-06-24 21:56:24 +000097syn keyword muttrcVarBool contained mark_old markers menu_move_off menu_scroll message_cache_clean meta_key
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000098syn keyword muttrcVarBool contained metoo mh_purge mime_forward_decode narrow_tree pager_stop
99syn keyword muttrcVarBool contained pgp_auto_decode pgp_auto_traditional pgp_autoencrypt
100syn keyword muttrcVarBool contained pgp_autoinline pgp_autosign pgp_check_exit
101syn keyword muttrcVarBool contained pgp_create_traditional pgp_ignore_subkeys pgp_long_ids
102syn keyword muttrcVarBool contained pgp_replyencrypt pgp_replyinline pgp_replysign
103syn keyword muttrcVarBool contained pgp_replysignencrypted pgp_retainable_sigs pgp_show_unusable
104syn keyword muttrcVarBool contained pgp_strict_enc pgp_use_gpg_agent pipe_decode pipe_split
105syn keyword muttrcVarBool contained pop_auth_try_all pop_last print_decode print_split
106syn keyword muttrcVarBool contained prompt_after read_only reply_self resolve reverse_alias
107syn keyword muttrcVarBool contained reverse_name reverse_realname rfc2047_parameters save_address
108syn keyword muttrcVarBool contained save_empty save_name score sig_dashes sig_on_top
109syn keyword muttrcVarBool contained smart_wrap smime_ask_cert_label smime_decrypt_use_default_key
110syn keyword muttrcVarBool contained smime_is_default sort_re ssl_force_tls ssl_use_sslv2
111syn keyword muttrcVarBool contained ssl_use_sslv3 ssl_use_tlsv1 ssl_usesystemcerts status_on_top
Bram Moolenaar9964e462007-05-05 17:54:07 +0000112syn keyword muttrcVarBool contained strict_mime strict_threads suspend text_flowed thorough_search
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000113syn keyword muttrcVarBool contained thread_received tilde uncollapse_jump use_8bitmime
114syn keyword muttrcVarBool contained use_domain use_envelope_from use_from use_idn use_ipv6
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115syn keyword muttrcVarBool contained user_agent wait_key weed wrap_search write_bcc
116
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000117syn keyword muttrcVarBool contained noallow_8bit noallow_ansi noarrow_cursor noascii_chars noaskbcc
118syn keyword muttrcVarBool contained noaskcc noattach_split noauto_tag noautoedit nobeep nobeep_new
119syn keyword muttrcVarBool contained nobounce_delivered nobraille_friendly nocheck_new nocollapse_unread
120syn keyword muttrcVarBool contained noconfirmappend noconfirmcreate nocrypt_autoencrypt nocrypt_autopgp
121syn keyword muttrcVarBool contained nocrypt_autosign nocrypt_autosmime nocrypt_replyencrypt
122syn keyword muttrcVarBool contained nocrypt_replysign nocrypt_replysignencrypted nocrypt_timestamp
123syn keyword muttrcVarBool contained nocrypt_use_gpgme nodelete_untag nodigest_collapse noduplicate_threads
124syn keyword muttrcVarBool contained noedit_hdrs noedit_headers noencode_from noenvelope_from nofast_reply
125syn keyword muttrcVarBool contained nofcc_attach nofcc_clear nofollowup_to noforce_name noforw_decode
126syn keyword muttrcVarBool contained noforw_decrypt noforw_quote noforward_decode noforward_decrypt
127syn keyword muttrcVarBool contained noforward_quote nohdrs noheader nohelp nohidden_host nohide_limited
128syn keyword muttrcVarBool contained nohide_missing nohide_thread_subject nohide_top_limited
129syn keyword muttrcVarBool contained nohide_top_missing noignore_list_reply_to noimap_check_subscribed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130syn keyword muttrcVarBool contained noimap_list_subscribed noimap_passive noimap_peek noimap_servernoise
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000131syn keyword muttrcVarBool contained noimplicit_autoview noinclude_onlyfirst nokeep_flagged
132syn keyword muttrcVarBool contained nomailcap_sanitize nomaildir_header_cache_verify nomaildir_trash
133syn keyword muttrcVarBool contained nomark_old nomarkers nomenu_move_off nomenu_scroll nometa_key
134syn keyword muttrcVarBool contained nometoo nomh_purge nomime_forward_decode nonarrow_tree nopager_stop
135syn keyword muttrcVarBool contained nopgp_auto_decode nopgp_auto_traditional nopgp_autoencrypt
136syn keyword muttrcVarBool contained nopgp_autoinline nopgp_autosign nopgp_check_exit
137syn keyword muttrcVarBool contained nopgp_create_traditional nopgp_ignore_subkeys nopgp_long_ids
138syn keyword muttrcVarBool contained nopgp_replyencrypt nopgp_replyinline nopgp_replysign
139syn keyword muttrcVarBool contained nopgp_replysignencrypted nopgp_retainable_sigs nopgp_show_unusable
140syn keyword muttrcVarBool contained nopgp_strict_enc nopgp_use_gpg_agent nopipe_decode nopipe_split
141syn keyword muttrcVarBool contained nopop_auth_try_all nopop_last noprint_decode noprint_split
142syn keyword muttrcVarBool contained noprompt_after noread_only noreply_self noresolve noreverse_alias
143syn keyword muttrcVarBool contained noreverse_name noreverse_realname norfc2047_parameters nosave_address
144syn keyword muttrcVarBool contained nosave_empty nosave_name noscore nosig_dashes nosig_on_top
145syn keyword muttrcVarBool contained nosmart_wrap nosmime_ask_cert_label nosmime_decrypt_use_default_key
146syn keyword muttrcVarBool contained nosmime_is_default nosort_re nossl_force_tls nossl_use_sslv2
147syn keyword muttrcVarBool contained nossl_use_sslv3 nossl_use_tlsv1 nossl_usesystemcerts nostatus_on_top
148syn keyword muttrcVarBool contained nostrict_threads nosuspend notext_flowed nothorough_search
149syn keyword muttrcVarBool contained nothread_received notilde nouncollapse_jump nouse_8bitmime
150syn keyword muttrcVarBool contained nouse_domain nouse_envelope_from nouse_from nouse_idn nouse_ipv6
151syn keyword muttrcVarBool contained nouser_agent nowait_key noweed nowrap_search nowrite_bcc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000153syn keyword muttrcVarBool contained invallow_8bit invallow_ansi invarrow_cursor invascii_chars invaskbcc
154syn keyword muttrcVarBool contained invaskcc invattach_split invauto_tag invautoedit invbeep invbeep_new
155syn keyword muttrcVarBool contained invbounce_delivered invbraille_friendly invcheck_new invcollapse_unread
156syn keyword muttrcVarBool contained invconfirmappend invconfirmcreate invcrypt_autoencrypt invcrypt_autopgp
157syn keyword muttrcVarBool contained invcrypt_autosign invcrypt_autosmime invcrypt_replyencrypt
158syn keyword muttrcVarBool contained invcrypt_replysign invcrypt_replysignencrypted invcrypt_timestamp
159syn keyword muttrcVarBool contained invcrypt_use_gpgme invdelete_untag invdigest_collapse invduplicate_threads
160syn keyword muttrcVarBool contained invedit_hdrs invedit_headers invencode_from invenvelope_from invfast_reply
161syn keyword muttrcVarBool contained invfcc_attach invfcc_clear invfollowup_to invforce_name invforw_decode
162syn keyword muttrcVarBool contained invforw_decrypt invforw_quote invforward_decode invforward_decrypt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163syn keyword muttrcVarBool contained invforward_quote invhdrs invheader invhelp invhidden_host invhide_limited
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000164syn keyword muttrcVarBool contained invhide_missing invhide_thread_subject invhide_top_limited
165syn keyword muttrcVarBool contained invhide_top_missing invignore_list_reply_to invimap_check_subscribed
166syn keyword muttrcVarBool contained invimap_list_subscribed invimap_passive invimap_peek invimap_servernoise
167syn keyword muttrcVarBool contained invimplicit_autoview invinclude_onlyfirst invkeep_flagged
168syn keyword muttrcVarBool contained invmailcap_sanitize invmaildir_header_cache_verify invmaildir_trash
169syn keyword muttrcVarBool contained invmark_old invmarkers invmenu_move_off invmenu_scroll invmeta_key
170syn keyword muttrcVarBool contained invmetoo invmh_purge invmime_forward_decode invnarrow_tree invpager_stop
171syn keyword muttrcVarBool contained invpgp_auto_decode invpgp_auto_traditional invpgp_autoencrypt
172syn keyword muttrcVarBool contained invpgp_autoinline invpgp_autosign invpgp_check_exit
173syn keyword muttrcVarBool contained invpgp_create_traditional invpgp_ignore_subkeys invpgp_long_ids
174syn keyword muttrcVarBool contained invpgp_replyencrypt invpgp_replyinline invpgp_replysign
175syn keyword muttrcVarBool contained invpgp_replysignencrypted invpgp_retainable_sigs invpgp_show_unusable
176syn keyword muttrcVarBool contained invpgp_strict_enc invpgp_use_gpg_agent invpipe_decode invpipe_split
177syn keyword muttrcVarBool contained invpop_auth_try_all invpop_last invprint_decode invprint_split
178syn keyword muttrcVarBool contained invprompt_after invread_only invreply_self invresolve invreverse_alias
179syn keyword muttrcVarBool contained invreverse_name invreverse_realname invrfc2047_parameters invsave_address
180syn keyword muttrcVarBool contained invsave_empty invsave_name invscore invsig_dashes invsig_on_top
181syn keyword muttrcVarBool contained invsmart_wrap invsmime_ask_cert_label invsmime_decrypt_use_default_key
182syn keyword muttrcVarBool contained invsmime_is_default invsort_re invssl_force_tls invssl_use_sslv2
183syn keyword muttrcVarBool contained invssl_use_sslv3 invssl_use_tlsv1 invssl_usesystemcerts invstatus_on_top
184syn keyword muttrcVarBool contained invstrict_threads invsuspend invtext_flowed invthorough_search
185syn keyword muttrcVarBool contained invthread_received invtilde invuncollapse_jump invuse_8bitmime
186syn keyword muttrcVarBool contained invuse_domain invuse_envelope_from invuse_from invuse_idn invuse_ipv6
187syn keyword muttrcVarBool contained invuser_agent invwait_key invweed invwrap_search invwrite_bcc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000189syn keyword muttrcVarQuad contained abort_nosubject abort_unmodified bounce copy
190syn keyword muttrcVarQuad contained crypt_verify_sig delete forward_edit honor_followup_to
191syn keyword muttrcVarQuad contained include mime_forward mime_forward_rest mime_fwd move
192syn keyword muttrcVarQuad contained pgp_mime_auto pgp_verify_sig pop_delete pop_reconnect
193syn keyword muttrcVarQuad contained postpone print quit recall reply_to ssl_starttls
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000195syn keyword muttrcVarQuad contained noabort_nosubject noabort_unmodified nobounce nocopy
196syn keyword muttrcVarQuad contained nocrypt_verify_sig nodelete noforward_edit nohonor_followup_to
197syn keyword muttrcVarQuad contained noinclude nomime_forward nomime_forward_rest nomime_fwd nomove
198syn keyword muttrcVarQuad contained nopgp_mime_auto nopgp_verify_sig nopop_delete nopop_reconnect
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199syn keyword muttrcVarQuad contained nopostpone noprint noquit norecall noreply_to nossl_starttls
200
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000201syn keyword muttrcVarQuad contained invabort_nosubject invabort_unmodified invbounce invcopy
202syn keyword muttrcVarQuad contained invcrypt_verify_sig invdelete invforward_edit invhonor_followup_to
203syn keyword muttrcVarQuad contained invinclude invmime_forward invmime_forward_rest invmime_fwd invmove
204syn keyword muttrcVarQuad contained invpgp_mime_auto invpgp_verify_sig invpop_delete invpop_reconnect
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205syn keyword muttrcVarQuad contained invpostpone invprint invquit invrecall invreply_to invssl_starttls
206
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000207syn keyword muttrcVarNum contained connect_timeout history imap_keepalive mail_check menu_context net_inc
208syn keyword muttrcVarNum contained pager_context pager_index_lines pgp_timeout pop_checkinterval read_inc
Bram Moolenaar9964e462007-05-05 17:54:07 +0000209syn keyword muttrcVarNum contained save_history score_threshold_delete score_threshold_flag
210syn keyword muttrcVarNum contained score_threshold_read sendmail_wait sleep_time smime_timeout
Bram Moolenaar446cb832008-06-24 21:56:24 +0000211syn keyword muttrcVarNum contained ssl_min_dh_prime_bits timeout time_inc wrap wrapmargin write_inc
212
213syn match muttrcStrftimeEscapes contained /%[AaBbCcDdeFGgHhIjklMmnpRrSsTtUuVvWwXxYyZz+%]/
214syn match muttrcStrftimeEscapes contained /%E[cCxXyY]/
215syn match muttrcStrftimeEscapes contained /%O[BdeHImMSuUVwWy]/
216
217syn match muttrcFormatErrors contained /%./
218
219syn region muttrcIndexFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcIndexFormatEscapes,muttrcIndexFormatConditionals,muttrcFormatErrors,muttrcTimeEscapes
220syn region muttrcIndexFormatStr contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcIndexFormatEscapes,muttrcIndexFormatConditionals,muttrcFormatErrors,muttrcTimeEscapes
Bram Moolenaarc236c162008-07-13 17:41:49 +0000221syn region muttrcQueryFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcQueryFormatEscapes,muttrcQueryFormatConditionals,muttrcFormatErrors
Bram Moolenaar446cb832008-06-24 21:56:24 +0000222syn region muttrcAliasFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcAliasFormatEscapes,muttrcFormatErrors
223syn region muttrcAliasFormatStr contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcAliasFormatEscapes,muttrcFormatErrors
224syn region muttrcAttachFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcAttachFormatEscapes,muttrcAttachFormatConditionals,muttrcFormatErrors
225syn region muttrcAttachFormatStr contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcAttachFormatEscapes,muttrcAttachFormatConditionals,muttrcFormatErrors
226syn region muttrcComposeFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcComposeFormatEscapes,muttrcFormatErrors
227syn region muttrcComposeFormatStr contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcComposeFormatEscapes,muttrcFormatErrors
228syn region muttrcFolderFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcFolderFormatEscapes,muttrcFolderFormatConditionals,muttrcFormatErrors
229syn region muttrcFolderFormatStr contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcFolderFormatEscapes,muttrcFolderFormatConditionals,muttrcFormatErrors
230syn region muttrcMixFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcMixFormatEscapes,muttrcMixFormatConditionals,muttrcFormatErrors
231syn region muttrcMixFormatStr contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcMixFormatEscapes,muttrcMixFormatConditionals,muttrcFormatErrors
232syn region muttrcPGPFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPGPFormatEscapes,muttrcPGPFormatConditionals,muttrcFormatErrors,muttrcPGPTimeEscapes
233syn region muttrcPGPFormatStr contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPGPFormatEscapes,muttrcPGPFormatConditionals,muttrcFormatErrors,muttrcPGPTimeEscapes
234syn region muttrcPGPCmdFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPGPCmdFormatEscapes,muttrcPGPCmdFormatConditionals,muttrcVariable,muttrcFormatErrors
235syn region muttrcPGPCmdFormatStr contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPGPCmdFormatEscapes,muttrcPGPCmdFormatConditionals,muttrcVariable,muttrcFormatErrors
236syn region muttrcStatusFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcStatusFormatEscapes,muttrcStatusFormatConditionals,muttrcFormatErrors
237syn region muttrcStatusFormatStr contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcStatusFormatEscapes,muttrcStatusFormatConditionals,muttrcFormatErrors
238syn region muttrcPGPGetKeysFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPGPGetKeysFormatEscapes,muttrcFormatErrors
239syn region muttrcPGPGetKeysFormatStr contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPGPGetKeysFormatEscapes,muttrcFormatErrors
240syn region muttrcSmimeFormatStr contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcSmimeFormatEscapes,muttrcSmimeFormatConditionals,muttrcVariable,muttrcFormatErrors
241syn region muttrcSmimeFormatStr contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcSmimeFormatEscapes,muttrcSmimeFormatConditionals,muttrcVariable,muttrcFormatErrors
242
243" The following info was pulled from hdr_format_str in hdrline.c
244syn match muttrcIndexFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[aAbBcCdDeEfFHilLmMnNOPsStTuvXyYZ%]/
245syn match muttrcIndexFormatConditionals contained /%?[EFHlLMNOXyY]?/ nextgroup=muttrcFormatConditionals2
246" The following info was pulled from alias_format_str in addrbook.c
247syn match muttrcAliasFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[afnrt%]/
Bram Moolenaarc236c162008-07-13 17:41:49 +0000248" The following info was pulled from query_format_str in query.c
249syn match muttrcQueryFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[acent%]/
250syn match muttrcQueryFormatConditionals contained /%?[e]?/ nextgroup=muttrcFormatConditionals2
Bram Moolenaar446cb832008-06-24 21:56:24 +0000251" The following info was pulled from mutt_attach_fmt in recvattach.c
252syn match muttrcAttachFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[CcDdefImMnQstTuX%]/
253syn match muttrcAttachFormatEscapes contained /%[>|*]./
254syn match muttrcAttachFormatConditionals contained /%?[CcdDefInmMQstTuX]?/ nextgroup=muttrcFormatConditionals2
255syn match muttrcFormatConditionals2 contained /[^?]*?/
256" The following info was pulled from compose_format_str in compose.c
257syn match muttrcComposeFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[ahlv%]/
258syn match muttrcComposeFormatEscapes contained /%[>|*]./
259" The following info was pulled from folder_format_str in browser.c
260syn match muttrcFolderFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[CdfFglNstu%]/
261syn match muttrcFolderFormatEscapes contained /%[>|*]./
262syn match muttrcFolderFormatConditionals contained /%?[N]?/
263" The following info was pulled from mix_entry_fmt in remailer.c
264syn match muttrcMixFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[ncsa%]/
265syn match muttrcMixFormatConditionals contained /%?[ncsa]?/
266" The following info was pulled from crypt_entry_fmt in crypt-gpgme.c
267" and pgp_entry_fmt in pgpkey.c (note that crypt_entry_fmt supports
268" 'p', but pgp_entry_fmt does not).
269syn match muttrcPGPFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[nkualfctp%]/
270syn match muttrcPGPFormatConditionals contained /%?[nkualfct]?/
271" The following info was pulled from _mutt_fmt_pgp_command in
272" pgpinvoke.c
273syn match muttrcPGPCmdFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[pfsar%]/
274syn match muttrcPGPCmdFormatConditionals contained /%?[pfsar]?/ nextgroup=muttrcFormatConditionals2
275" The following info was pulled from status_format_str in status.c
276syn match muttrcStatusFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[bdfFhlLmMnopPrsStuvV%]/
277syn match muttrcStatusFormatEscapes contained /%[>|*]./
278syn match muttrcStatusFormatConditionals contained /%?[bdFlLmMnoptuV]?/ nextgroup=muttrcFormatConditionals2
279" This matches the documentation, but directly contradicts the code
280" (according to the code, this should be identical to the
281" muttrcPGPCmdFormatEscapes
282syn match muttrcPGPGetKeysFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[r%]/
283" The following info was pulled from _mutt_fmt_smime_command in
284" smime.c
285syn match muttrcSmimeFormatEscapes contained /%\%(\%(-\?[0-9]\+\)\?\%(\.[0-9]\+\)\?\)\?[:_]\?[Cciskaf%]/
286syn match muttrcSmimeFormatConditionals contained /%?[Cciskaf]?/ nextgroup=muttrcFormatConditionals2
287
288syn region muttrcTimeEscapes contained start=+%{+ end=+}+ contains=muttrcStrftimeEscapes
289syn region muttrcTimeEscapes contained start=+%\[+ end=+\]+ contains=muttrcStrftimeEscapes
290syn region muttrcTimeEscapes contained start=+%(+ end=+)+ contains=muttrcStrftimeEscapes
291syn region muttrcTimeEscapes contained start=+%<+ end=+>+ contains=muttrcStrftimeEscapes
292syn region muttrcPGPTimeEscapes contained start=+%\[+ end=+\]+ contains=muttrcStrftimeEscapes
293
294syn keyword muttrcVarStr contained attribution index_format message_format pager_format nextgroup=muttrcVarEqualsIdxFmt
Bram Moolenaarc236c162008-07-13 17:41:49 +0000295syn match muttrcVarEqualsIdxFmt contained " *= *" nextgroup=muttrcIndexFormatStr
Bram Moolenaar446cb832008-06-24 21:56:24 +0000296syn keyword muttrcVarStr contained alias_format nextgroup=muttrcVarEqualsAliasFmt
Bram Moolenaarc236c162008-07-13 17:41:49 +0000297syn match muttrcVarEqualsAliasFmt contained " *= *" nextgroup=muttrcAliasFormatStr
Bram Moolenaar446cb832008-06-24 21:56:24 +0000298syn keyword muttrcVarStr contained attach_format nextgroup=muttrcVarEqualsAttachFmt
Bram Moolenaarc236c162008-07-13 17:41:49 +0000299syn match muttrcVarEqualsAttachFmt contained " *= *" nextgroup=muttrcAttachFormatStr
Bram Moolenaar446cb832008-06-24 21:56:24 +0000300syn keyword muttrcVarStr contained compose_format nextgroup=muttrcVarEqualsComposeFmt
Bram Moolenaarc236c162008-07-13 17:41:49 +0000301syn match muttrcVarEqualsComposeFmt contained " *= *" nextgroup=muttrcComposeFormatStr
Bram Moolenaar446cb832008-06-24 21:56:24 +0000302syn keyword muttrcVarStr contained folder_format nextgroup=muttrcVarEqualsFolderFmt
Bram Moolenaarc236c162008-07-13 17:41:49 +0000303syn match muttrcVarEqualsFolderFmt contained " *= *" nextgroup=muttrcFolderFormatStr
Bram Moolenaar446cb832008-06-24 21:56:24 +0000304syn keyword muttrcVarStr contained mix_entry_format nextgroup=muttrcVarEqualsMixFmt
Bram Moolenaarc236c162008-07-13 17:41:49 +0000305syn match muttrcVarEqualsMixFmt contained " *= *" nextgroup=muttrcMixFormatStr
Bram Moolenaar446cb832008-06-24 21:56:24 +0000306syn keyword muttrcVarStr contained pgp_entry_format nextgroup=muttrcVarEqualsPGPFmt
Bram Moolenaarc236c162008-07-13 17:41:49 +0000307syn match muttrcVarEqualsPGPFmt contained " *= *" nextgroup=muttrcPGPFormatStr
308syn keyword muttrcVarStr contained query_format nextgroup=muttrcVarEqualsQueryFmt
309syn match muttrcVarEqualsQueryFmt contained " *= *" nextgroup=muttrcQueryFormatStr
Bram Moolenaar446cb832008-06-24 21:56:24 +0000310syn keyword muttrcVarStr contained 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
Bram Moolenaarc236c162008-07-13 17:41:49 +0000311syn match muttrcVarEqualsPGPCmdFmt contained " *= *" nextgroup=muttrcPGPCmdFormatStr
Bram Moolenaar446cb832008-06-24 21:56:24 +0000312syn keyword muttrcVarStr contained status_format nextgroup=muttrcVarEqualsStatusFmt
Bram Moolenaarc236c162008-07-13 17:41:49 +0000313syn match muttrcVarEqualsStatusFmt contained " *= *" nextgroup=muttrcStatusFormatStr
Bram Moolenaar446cb832008-06-24 21:56:24 +0000314syn keyword muttrcVarStr contained pgp_getkeys_command nextgroup=muttrcVarEqualsPGPGetKeysFmt
Bram Moolenaarc236c162008-07-13 17:41:49 +0000315syn match muttrcVarEqualsPGPGetKeysFmt contained " *= *" nextgroup=muttrcPGPGetKeysFormatStr
Bram Moolenaar446cb832008-06-24 21:56:24 +0000316syn keyword muttrcVarStr contained 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
Bram Moolenaarc236c162008-07-13 17:41:49 +0000317syn match muttrcVarEqualsSmimeFmt contained " *= *" nextgroup=muttrcSmimeFormatStr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318
Bram Moolenaar9964e462007-05-05 17:54:07 +0000319syn match muttrcVarStr contained 'my_[a-zA-Z0-9_]\+'
Bram Moolenaar446cb832008-06-24 21:56:24 +0000320syn keyword muttrcVarStr contained alias_file assumed_charset attach_charset attach_sep
321syn keyword muttrcVarStr contained certificate_file charset config_charset content_type
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000322syn keyword muttrcVarStr contained date_format default_hook display_filter dotlock_program dsn_notify
323syn keyword muttrcVarStr contained dsn_return editor entropy_file envelope_from_address escape folder
Bram Moolenaar446cb832008-06-24 21:56:24 +0000324syn keyword muttrcVarStr contained forw_format forward_format from gecos_mask hdr_format
Bram Moolenaar9964e462007-05-05 17:54:07 +0000325syn keyword muttrcVarStr contained header_cache header_cache_pagesize history_file hostname imap_authenticators
Bram Moolenaar446cb832008-06-24 21:56:24 +0000326syn keyword muttrcVarStr contained imap_delim_chars imap_headers imap_idle imap_login imap_pass
327syn keyword muttrcVarStr contained imap_user indent_str indent_string ispell locale mailcap_path
328syn keyword muttrcVarStr contained mask mbox mbox_type message_cachedir mh_seq_flagged mh_seq_replied
329syn keyword muttrcVarStr contained mh_seq_unseen mixmaster msg_format pager
330syn keyword muttrcVarStr contained pgp_good_sign
331syn keyword muttrcVarStr contained pgp_mime_signature_filename
Bram Moolenaar9964e462007-05-05 17:54:07 +0000332syn keyword muttrcVarStr contained pgp_mime_signature_description pgp_sign_as
Bram Moolenaar446cb832008-06-24 21:56:24 +0000333syn keyword muttrcVarStr contained pgp_sort_keys
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000334syn keyword muttrcVarStr contained pipe_sep pop_authenticators pop_host pop_pass pop_user post_indent_str
335syn keyword muttrcVarStr contained post_indent_string postponed preconnect print_cmd print_command
336syn keyword muttrcVarStr contained query_command quote_regexp realname record reply_regexp send_charset
337syn keyword muttrcVarStr contained sendmail shell signature simple_search smileys smime_ca_location
Bram Moolenaar446cb832008-06-24 21:56:24 +0000338syn keyword muttrcVarStr contained smime_certificates smime_default_key
339syn keyword muttrcVarStr contained smime_encrypt_with
340syn keyword muttrcVarStr contained smime_keys smime_sign_as
341syn keyword muttrcVarStr contained smtp_url smtp_authenticators smtp_pass sort sort_alias sort_aux
Bram Moolenaar9964e462007-05-05 17:54:07 +0000342syn keyword muttrcVarStr contained sort_browser spam_separator spoolfile ssl_ca_certificates_file ssl_client_cert
Bram Moolenaar446cb832008-06-24 21:56:24 +0000343syn keyword muttrcVarStr contained status_chars tmpdir to_chars tunnel visual
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000344
345" Present in 1.4.2.1 (pgp_create_traditional was a bool then)
346syn keyword muttrcVarBool contained imap_force_ssl imap_force_ssl noinvimap_force_ssl
347"syn keyword muttrcVarQuad contained pgp_create_traditional nopgp_create_traditional invpgp_create_traditional
348syn keyword muttrcVarStr contained alternates
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349
350syn keyword muttrcMenu contained alias attach browser compose editor index pager postpone pgp mix query generic
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000351syn match muttrcMenuList "\S\+" contained contains=muttrcMenu
352syn match muttrcMenuCommas /,/ contained
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000354syn keyword muttrcCommand auto_view alternative_order charset-hook exec unalternative_order
355syn keyword muttrcCommand hdr_order iconv-hook ignore mailboxes my_hdr unmailboxes
356syn keyword muttrcCommand pgp-hook push score source unauto_view unhdr_order
Bram Moolenaar9964e462007-05-05 17:54:07 +0000357syn keyword muttrcCommand unignore unmono unmy_hdr unscore
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000358syn keyword muttrcCommand mime_lookup unmime_lookup spam ungroup
359syn keyword muttrcCommand nospam unalternative_order
360
Bram Moolenaar9964e462007-05-05 17:54:07 +0000361syn keyword muttrcHooks contained 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
362syn keyword muttrcUnhook contained unhook
363syn region muttrcUnhookLine keepend start=+^\s*unhook\s+ skip=+\\$+ end=+$+ contains=muttrcUnhook,muttrcHooks,muttrcUnHighlightSpace,muttrcComment
364
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000365syn match muttrcAttachmentsMimeType contained "[*a-z0-9_-]\+/[*a-z0-9._-]\+\s*" skipwhite nextgroup=muttrcAttachmentsMimeType
366syn match muttrcAttachmentsFlag contained "[+-]\%([AI]\|inline\|attachment\)\s\+" skipwhite nextgroup=muttrcAttachmentsMimeType
367syn match muttrcAttachmentsLine "^\s*\%(un\)\?attachments\s\+" skipwhite nextgroup=muttrcAttachmentsFlag
368
369syn match muttrcUnHighlightSpace contained "\%(\s\+\|\\$\)"
370
371syn keyword muttrcListsKeyword contained lists unlists
372syn region muttrcListsLine keepend start=+^\s*\%(un\)\?lists\s+ skip=+\\$+ end=+$+ contains=muttrcListsKeyword,muttrcRXPat,muttrcGroupDef,muttrcUnHighlightSpace,muttrcComment
373
374syn keyword muttrcSubscribeKeyword contained subscribe unsubscribe
375syn region muttrcSubscribeLine keepend start=+^\s*\%(un\)\?subscribe\s+ skip=+\\$+ end=+$+ contains=muttrcSubscribeKeyword,muttrcRXPat,muttrcGroupDef,muttrcUnHighlightSpace,muttrcComment
376
377syn keyword muttrcAlternateKeyword contained alternates unalternates
378syn region muttrcAlternatesLine keepend start=+^\s*\%(un\)\?alternates\s+ skip=+\\$+ end=+$+ contains=muttrcAlternateKeyword,muttrcGroupDef,muttrcRXPat,muttrcUnHighlightSpace,muttrcComment
379
380syn match muttrcVariable "\$[a-zA-Z_-]\+"
381
382syn match muttrcBadAction contained "[^<>]\+" contains=muttrcEmail
Bram Moolenaarc236c162008-07-13 17:41:49 +0000383syn match muttrcFunction contained "\<\%(attach\|bounce\|copy\|delete\|display\|flag\|forward\|parent\|pipe\|postpone\|print\|recall\|resend\|save\|send\|tag\|undelete\)-message\>"
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000384syn match muttrcFunction contained "\<\%(delete\|next\|previous\|read\|tag\|undelete\)-thread\>"
385syn match muttrcFunction contained "\<\%(backward\|capitalize\|downcase\|forward\|kill\|upcase\)-word\>"
386syn match muttrcFunction contained "\<\%(delete\|filter\|first\|last\|next\|pipe\|previous\|print\|save\|select\|tag\|undelete\)-entry\>"
387syn match muttrcFunction contained "\<attach-\%(file\|key\)\>"
388syn match muttrcFunction contained "\<change-\%(dir\|folder\|folder-readonly\)\>"
389syn match muttrcFunction contained "\<check-\%(new\|traditional-pgp\)\>"
390syn match muttrcFunction contained "\<current-\%(bottom\|middle\|top\)\>"
391syn match muttrcFunction contained "\<decode-\%(copy\|save\)\>"
392syn match muttrcFunction contained "\<delete-\%(char\|pattern\|subthread\)\>"
393syn match muttrcFunction contained "\<display-\%(address\|toggle-weed\)\>"
394syn match muttrcFunction contained "\<edit\%(-\%(bcc\|cc\|description\|encoding\|fcc\|file\|from\|headers\|mime\|reply-to\|subject\|to\|type\)\)\?\>"
395syn match muttrcFunction contained "\<enter-\%(command\|mask\)\>"
396syn match muttrcFunction contained "\<half-\%(up\|down\)\>"
397syn match muttrcFunction contained "\<history-\%(up\|down\)\>"
398syn match muttrcFunction contained "\<kill-\%(eol\|eow\|line\)\>"
Bram Moolenaarc236c162008-07-13 17:41:49 +0000399syn match muttrcFunction contained "\<next-\%(line\|new\|page\|subthread\|undeleted\|unread\|unread-mailbox\)\>"
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000400syn match muttrcFunction contained "\<previous-\%(line\|new\|page\|subthread\|undeleted\|unread\)\>"
401syn match muttrcFunction contained "\<search\%(-\%(next\|opposite\|reverse\|toggle\)\)\?\>"
402syn match muttrcFunction contained "\<show-\%(limit\|version\)\>"
403syn match muttrcFunction contained "\<sort-\%(mailbox\|reverse\)\>"
Bram Moolenaar9964e462007-05-05 17:54:07 +0000404syn match muttrcFunction contained "\<tag-\%(pattern\|prefix\%(-cond\)\?\)\>"
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000405syn match muttrcFunction contained "\<toggle-\%(mailboxes\|new\|quoted\|subscribed\|unlink\|write\)\>"
406syn match muttrcFunction contained "\<undelete-\%(pattern\|subthread\)\>"
407syn match muttrcFunction contained "\<collapse-\%(parts\|thread\|all\)\>"
408syn match muttrcFunction contained "\<view-\%(attach\|attachments\|file\|mailcap\|name\|text\)\>"
Bram Moolenaar9964e462007-05-05 17:54:07 +0000409syn 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\)\>"
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000410syn match muttrcAction contained "<[^>]\{-}>" contains=muttrcBadAction,muttrcFunction,muttrcKeyName
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411
412syn keyword muttrcSet set skipwhite nextgroup=muttrcVar.*
413syn keyword muttrcUnset unset skipwhite nextgroup=muttrcVar.*
414syn keyword muttrcReset reset skipwhite nextgroup=muttrcVar.*
415syn keyword muttrcToggle toggle skipwhite nextgroup=muttrcVar.*
416
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000417" First, functions that take regular expressions:
418syn match muttrcRXHookNot contained /!\s*/ skipwhite nextgroup=muttrcRXString
419syn match muttrcRXHooks /^\s*\%(account\|folder\)-hook\s\+/ skipwhite nextgroup=muttrcRXHookNot,muttrcRXString
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000421" Now, functions that take patterns
422syn match muttrcPatHookNot contained /!\s*/ skipwhite nextgroup=muttrcPattern
423syn match muttrcPatHooks /^\s*\%(message\|mbox\|save\|fcc\%(-save\)\?\|send2\?\|reply\|crypt\)-hook\s\+/ nextgroup=muttrcPatHookNot,muttrcPattern
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000425syn match muttrcBindFunction contained /\S\+\%(\s\|$\)/ skipwhite contains=muttrcFunction
426syn match muttrcBindFunctionNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcBindFunction,muttrcBindFunctionNL
427syn match muttrcBindKey contained /\S\+/ skipwhite contains=muttrcKey nextgroup=muttrcBindFunction,muttrcBindFunctionNL
428syn match muttrcBindKeyNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcBindKey,muttrcBindKeyNL
429syn match muttrcBindMenuList contained /\S\+/ skipwhite contains=muttrcMenu,muttrcMenuCommas nextgroup=muttrcBindKey,muttrcBindKeyNL
430syn match muttrcBindMenuListNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcBindMenuList,muttrcBindMenuListNL
431syn match muttrcBind /^\s*bind\s\?/ skipwhite nextgroup=muttrcBindMenuList,muttrcBindMenuListNL
432
Bram Moolenaar9964e462007-05-05 17:54:07 +0000433syn region muttrcMacroDescr contained keepend skipwhite start=+\s*\S+ms=e skip=+\\ + end=+ \|$+me=s
434syn region muttrcMacroDescr contained keepend skipwhite start=+'+ms=e skip=+\\'+ end=+'+me=s
435syn region muttrcMacroDescr contained keepend skipwhite start=+"+ms=e skip=+\\"+ end=+"+me=s
436syn match muttrcMacroDescrNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroDescr,muttrcMacroDescrNL
437syn region muttrcMacroBody contained skipwhite start="\S" skip='\\ \|\\$' end=' \|$' contains=muttrcEscape,muttrcSet,muttrcUnset,muttrcReset,muttrcToggle,muttrcCommand,muttrcAction nextgroup=muttrcMacroDescr,muttrcMacroDescrNL
Bram Moolenaarc236c162008-07-13 17:41:49 +0000438syn region muttrcMacroBody matchgroup=Type contained skipwhite start=+'+ms=e skip=+\\'\|\\$+ end=+'\|$+me=s contains=muttrcEscape,muttrcSet,muttrcUnset,muttrcReset,muttrcToggle,muttrcCommand,muttrcAction nextgroup=muttrcMacroDescr,muttrcMacroDescrNL
439syn region muttrcMacroBody matchgroup=Type contained skipwhite start=+"+ms=e skip=+\\"\|\\$+ end=+"\|$+me=s contains=muttrcEscape,muttrcSet,muttrcUnset,muttrcReset,muttrcToggle,muttrcCommand,muttrcAction nextgroup=muttrcMacroDescr,muttrcMacroDescrNL
Bram Moolenaar9964e462007-05-05 17:54:07 +0000440syn match muttrcMacroBodyNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroBody,muttrcMacroBodyNL
441syn match muttrcMacroKey contained /\S\+/ skipwhite contains=muttrcKey nextgroup=muttrcMacroBody,muttrcMacroBodyNL
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000442syn match muttrcMacroKeyNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroKey,muttrcMacroKeyNL
443syn match muttrcMacroMenuList contained /\S\+/ skipwhite contains=muttrcMenu,muttrcMenuCommas nextgroup=muttrcMacroKey,muttrcMacroKeyNL
444syn match muttrcMacroMenuListNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcMacroMenuList,muttrcMacroMenuListNL
445syn match muttrcMacro /^\s*macro\s\?/ skipwhite nextgroup=muttrcMacroMenuList,muttrcMacroMenuListNL
446
447syn match muttrcAddrContent contained "[a-zA-Z0-9._-]\+@[a-zA-Z0-9./-]\+\s*" skipwhite contains=muttrcEmail nextgroup=muttrcAddrContent
448syn region muttrcAddrContent contained start=+'+ end=+'\s*+ skip=+\\'+ skipwhite contains=muttrcEmail nextgroup=muttrcAddrContent
449syn region muttrcAddrContent contained start=+"+ end=+"\s*+ skip=+\\"+ skipwhite contains=muttrcEmail nextgroup=muttrcAddrContent
450syn match muttrcAddrDef contained "-addr\s\+" skipwhite nextgroup=muttrcAddrContent
451
452syn match muttrcGroupFlag contained "-group"
453syn region muttrcGroupDef contained start="-group\s\+" skip="\\$" end="\s" skipwhite keepend contains=muttrcGroupFlag,muttrcUnHighlightSpace
454
455syn keyword muttrcGroupKeyword contained group ungroup
456syn region muttrcGroupLine keepend start=+^\s*\%(un\)\?group\s+ skip=+\\$+ end=+$+ contains=muttrcGroupKeyword,muttrcGroupDef,muttrcAddrDef,muttrcRXDef,muttrcUnHighlightSpace,muttrcComment
457
Bram Moolenaar9964e462007-05-05 17:54:07 +0000458syn match muttrcAliasGroupName contained /\w\+/ skipwhite nextgroup=muttrcAliasGroupDef,muttrcAliasKey,muttrcAliasNL
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000459syn match muttrcAliasGroupDefNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasGroupName,muttrcAliasGroupDefNL
460syn match muttrcAliasGroupDef contained /\s*-group/ skipwhite nextgroup=muttrcAliasGroupName,muttrcAliasGroupDefNL contains=muttrcGroupFlag
Bram Moolenaar9964e462007-05-05 17:54:07 +0000461syn match muttrcAliasComma contained /,/ skipwhite nextgroup=muttrcAliasEmail,muttrcAliasEncEmail,muttrcAliasNameNoParens,muttrcAliasENNL
462syn match muttrcAliasEmail contained /\S\+@\S\+/ contains=muttrcEmail nextgroup=muttrcAliasName,muttrcAliasNameNL skipwhite
463syn match muttrcAliasEncEmail contained /<[^>]\+>/ contains=muttrcEmail nextgroup=muttrcAliasComma
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000464syn match muttrcAliasEncEmailNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasEncEmail,muttrcAliasEncEmailNL
465syn match muttrcAliasNameNoParens contained /[^<(@]\+\s\+/ nextgroup=muttrcAliasEncEmail,muttrcAliasEncEmailNL
466syn region muttrcAliasName contained matchgroup=Type start=/(/ end=/)/ skipwhite
467syn match muttrcAliasNameNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasName,muttrcAliasNameNL
Bram Moolenaar9964e462007-05-05 17:54:07 +0000468syn match muttrcAliasENNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasEmail,muttrcAliasEncEmail,muttrcAliasNameNoParens,muttrcAliasENNL
469syn match muttrcAliasKey contained /\s*[^- \t]\S\+/ skipwhite nextgroup=muttrcAliasEmail,muttrcAliasEncEmail,muttrcAliasNameNoParens,muttrcAliasENNL
470syn match muttrcAliasNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcAliasGroupDef,muttrcAliasKey,muttrcAliasNL
471syn match muttrcAlias /^\s*alias\s/ skipwhite nextgroup=muttrcAliasGroupDef,muttrcAliasKey,muttrcAliasNL
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000472
Bram Moolenaar9964e462007-05-05 17:54:07 +0000473syn match muttrcUnAliasKey contained "\s*\w\+\s*" skipwhite nextgroup=muttrcUnAliasKey,muttrcUnAliasNL
474syn match muttrcUnAliasNL contained /\s*\\$/ skipwhite skipnl nextgroup=muttrcUnAliasKey,muttrcUnAliasNL
475syn match muttrcUnAlias /^\s*unalias\s\?/ nextgroup=muttrcUnAliasKey,muttrcUnAliasNL
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000476
477syn match muttrcSimplePat contained "!\?\^\?[~][ADEFgGklNOpPQRSTuUvV=$]"
478syn match muttrcSimplePat contained "!\?\^\?[~][mnXz]\s\+\%([<>-][0-9]\+\|[0-9]\+[-][0-9]*\)"
Bram Moolenaar446cb832008-06-24 21:56:24 +0000479syn 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
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000480syn match muttrcSimplePat contained "!\?\^\?[~][bBcCefhHiLstxy]\s\+" nextgroup=muttrcSimplePatRXContainer
Bram Moolenaar9964e462007-05-05 17:54:07 +0000481syn match muttrcSimplePat contained "!\?\^\?[%][bBcCefhHiLstxy]\s\+" nextgroup=muttrcSimplePatString
482syn match muttrcSimplePat contained "!\?\^\?[=][bh]\s\+" nextgroup=muttrcSimplePatString
Bram Moolenaar446cb832008-06-24 21:56:24 +0000483syn region muttrcSimplePat contained keepend start=+!\?\^\?[~](+ end=+)+ contains=muttrcSimplePat
484"syn match muttrcSimplePat contained /'[^~=%][^']*/
485"contains=muttrcRXPat
Bram Moolenaar9964e462007-05-05 17:54:07 +0000486syn match muttrcSimplePatString contained /[a-zA-Z0-9]\+/
487syn region muttrcSimplePatString contained keepend start=+"+ end=+"+ skip=+\\"+
488syn region muttrcSimplePatString contained keepend start=+'+ end=+'+ skip=+\\'+
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000489syn region muttrcSimplePatRXContainer contained keepend start=+"+ end=+"+ skip=+\\"+ contains=muttrcRXPat
490syn region muttrcSimplePatRXContainer contained keepend start=+'+ end=+'+ skip=+\\'+ contains=muttrcRXPat
491syn match muttrcSimplePatRXContainer contained /\S\+/ contains=muttrcRXPat
492syn match muttrcSimplePatMetas contained /[(|)]/
493
494syn region muttrcPattern contained keepend start=+"+ skip=+\\"+ end=+"+ contains=muttrcPatternInner
495syn region muttrcPattern contained keepend start=+'+ skip=+\\'+ end=+'+ contains=muttrcPatternInner
Bram Moolenaar446cb832008-06-24 21:56:24 +0000496syn match muttrcPattern contained "[~]\([A-Za-z]\|([^)]\+)\)" contains=muttrcSimplePat
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000497syn region muttrcPatternInner contained keepend start=+"[~=%!(^]+ms=s+1 skip=+\\"+ end=+"+me=e-1 contains=muttrcSimplePat,muttrcUnHighlightSpace,muttrcSimplePatMetas
498syn region muttrcPatternInner contained keepend start=+'[~=%!(^]+ms=s+1 skip=+\\'+ end=+'+me=e-1 contains=muttrcSimplePat,muttrcUnHighlightSpace,muttrcSimplePatMetas
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499
500" Colour definitions takes object, foreground and background arguments (regexps excluded).
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000501syn match muttrcColorMatchCount contained "[0-9]\+"
502syn match muttrcColorMatchCountNL contained skipwhite skipnl "\s*\\$" nextgroup=muttrcColorMatchCount,muttrcColorMatchCountNL
Bram Moolenaar9964e462007-05-05 17:54:07 +0000503syn region muttrcColorRXPat contained start=+\s*'+ skip=+\\'+ end=+'\s*+ keepend skipwhite contains=muttrcRXString2 nextgroup=muttrcColorMatchCount,muttrcColorMatchCountNL
504syn region muttrcColorRXPat contained start=+\s*"+ skip=+\\"+ end=+"\s*+ keepend skipwhite contains=muttrcRXString2 nextgroup=muttrcColorMatchCount,muttrcColorMatchCountNL
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000505syn keyword muttrcColorField contained attachment body bold error hdrdefault header index indicator markers message normal quoted search signature status tilde tree underline
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506syn match muttrcColorField contained "\<quoted\d\=\>"
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000507syn keyword muttrcColor contained black blue cyan default green magenta red white yellow
508syn keyword muttrcColor contained brightblack brightblue brightcyan brightdefault brightgreen brightmagenta brightred brightwhite brightyellow
509syn match muttrcColor contained "\<\%(bright\)\=color\d\{1,2}\>"
510" Now for the structure of the color line
Bram Moolenaar9964e462007-05-05 17:54:07 +0000511syn match muttrcColorRXNL contained skipnl "\s*\\$" nextgroup=muttrcColorRXPat,muttrcColorRXNL
512syn match muttrcColorBG contained /\s*[$]\?\w\+/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcColorRXPat,muttrcColorRXNL
513syn match muttrcColorBGNL contained skipnl "\s*\\$" nextgroup=muttrcColorBG,muttrcColorBGNL
514syn match muttrcColorFG contained /\s*[$]\?\w\+/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcColorBG,muttrcColorBGNL
515syn match muttrcColorFGNL contained skipnl "\s*\\$" nextgroup=muttrcColorFG,muttrcColorFGNL
516syn match muttrcColorContext contained /\s*[$]\?\w\+/ contains=muttrcColorField,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcColorFG,muttrcColorFGNL
517syn match muttrcColorNL contained skipnl "\s*\\$" nextgroup=muttrcColorContext,muttrcColorNL
518syn match muttrcColorKeyword contained /^\s*color\s\+/ nextgroup=muttrcColorContext,muttrcColorNL
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000519syn region muttrcColorLine keepend start=/^\s*color\s\+\%(index\)\@!/ skip=+\\$+ end=+$+ contains=muttrcColorKeyword,muttrcComment,muttrcUnHighlightSpace
520" Now for the structure of the color index line
Bram Moolenaar9964e462007-05-05 17:54:07 +0000521syn match muttrcPatternNL contained skipnl "\s*\\$" nextgroup=muttrcPattern,muttrcPatternNL
522syn match muttrcColorBGI contained /\s*[$]\?\w\+\s*/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcPattern,muttrcPatternNL
523syn match muttrcColorBGNLI contained skipnl "\s*\\$" nextgroup=muttrcColorBGI,muttrcColorBGNLI
524syn match muttrcColorFGI contained /\s*[$]\?\w\+/ contains=muttrcColor,muttrcVariable,muttrcUnHighlightSpace nextgroup=muttrcColorBGI,muttrcColorBGNLI
525syn match muttrcColorFGNLI contained skipnl "\s*\\$" nextgroup=muttrcColorFGI,muttrcColorFGNLI
526syn match muttrcColorContextI contained /\s*index/ contains=muttrcUnHighlightSpace nextgroup=muttrcColorFGI,muttrcColorFGNLI
527syn match muttrcColorNLI contained skipnl "\s*\\$" nextgroup=muttrcColorContextI,muttrcColorNLI
528syn match muttrcColorKeywordI contained /^\s*color\s\+/ nextgroup=muttrcColorContextI,muttrcColorNLI
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000529syn region muttrcColorLine keepend start=/^\s*color\s\+index/ skip=+\\$+ end=+$+ contains=muttrcColorKeywordI,muttrcComment,muttrcUnHighlightSpace
530" And now color's brother:
531syn region muttrcUnColorPatterns contained skipwhite start=+\s*'+ end=+'+ skip=+\\'+ contains=muttrcPattern nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
532syn region muttrcUnColorPatterns contained skipwhite start=+\s*"+ end=+"+ skip=+\\"+ contains=muttrcPattern nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
533syn match muttrcUnColorPatterns contained skipwhite /\s*[^'"\s]\S\*/ contains=muttrcPattern nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
534syn match muttrcUnColorPatNL contained skipwhite skipnl /\s*\\$/ nextgroup=muttrcUnColorPatterns,muttrcUnColorPatNL
535syn match muttrcUnColorAll contained skipwhite /[*]/
536syn match muttrcUnColorAPNL contained skipwhite skipnl /\s*\\$/ nextgroup=muttrcUnColorPatterns,muttrcUnColorAll,muttrcUnColorAPNL
537syn match muttrcUnColorIndex contained skipwhite /\s*index\s\+/ nextgroup=muttrcUnColorPatterns,muttrcUnColorAll,muttrcUnColorAPNL
538syn match muttrcUnColorIndexNL contained skipwhite skipnl /\s*\\$/ nextgroup=muttrcUnColorIndex,muttrcUnColorIndexNL
539syn match muttrcUnColorKeyword contained skipwhite /^\s*uncolor\s\+/ nextgroup=muttrcUnColorIndex,muttrcUnColorIndexNL
540syn region muttrcUnColorLine keepend start=+^\s*uncolor\s+ skip=+\\$+ end=+$+ contains=muttrcUnColorKeyword,muttrcComment,muttrcUnHighlightSpace
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541
542" Mono are almost like color (ojects inherited from color)
543syn keyword muttrcMonoAttrib contained bold none normal reverse standout underline
544syn keyword muttrcMono contained mono skipwhite nextgroup=muttrcColorField
545syn match muttrcMonoLine "^\s*mono\s\+\S\+" skipwhite nextgroup=muttrcMonoAttrib contains=muttrcMono
546
547" Define the default highlighting.
548" For version 5.7 and earlier: only when not done already
549" For version 5.8 and later: only when an item doesn't have highlighting yet
550if version >= 508 || !exists("did_muttrc_syntax_inits")
551 if version < 508
552 let did_muttrc_syntax_inits = 1
553 command -nargs=+ HiLink hi link <args>
554 else
555 command -nargs=+ HiLink hi def link <args>
556 endif
557
558 HiLink muttrcComment Comment
559 HiLink muttrcEscape SpecialChar
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000560 HiLink muttrcRXChars SpecialChar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 HiLink muttrcString String
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000562 HiLink muttrcRXString String
Bram Moolenaar9964e462007-05-05 17:54:07 +0000563 HiLink muttrcRXString2 String
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 HiLink muttrcSpecial Special
Bram Moolenaar9964e462007-05-05 17:54:07 +0000565 HiLink muttrcHooks Type
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000566 HiLink muttrcGroupFlag Type
567 HiLink muttrcGroupDef Macro
568 HiLink muttrcAddrDef muttrcGroupFlag
569 HiLink muttrcRXDef muttrcGroupFlag
570 HiLink muttrcRXPat String
571 HiLink muttrcAliasGroupName Macro
Bram Moolenaar9964e462007-05-05 17:54:07 +0000572 HiLink muttrcAliasKey Identifier
573 HiLink muttrcUnAliasKey Identifier
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000574 HiLink muttrcAliasEncEmail Identifier
575 HiLink muttrcAliasParens Type
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 HiLink muttrcNumber Number
577 HiLink muttrcQuadopt Boolean
578 HiLink muttrcEmail Special
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000579 HiLink muttrcVariable Special
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 HiLink muttrcHeader Type
581 HiLink muttrcKeySpecial SpecialChar
582 HiLink muttrcKey Type
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000583 HiLink muttrcKeyName SpecialChar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 HiLink muttrcVarBool Identifier
585 HiLink muttrcVarQuad Identifier
586 HiLink muttrcVarNum Identifier
587 HiLink muttrcVarStr Identifier
588 HiLink muttrcMenu Identifier
589 HiLink muttrcCommand Keyword
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000590 HiLink muttrcSet Keyword
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 HiLink muttrcUnset muttrcCommand
592 HiLink muttrcReset muttrcCommand
593 HiLink muttrcToggle muttrcCommand
594 HiLink muttrcBind muttrcCommand
595 HiLink muttrcMacro muttrcCommand
Bram Moolenaar9964e462007-05-05 17:54:07 +0000596 HiLink muttrcMacroDescr String
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 HiLink muttrcAlias muttrcCommand
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000598 HiLink muttrcUnAlias muttrcCommand
Bram Moolenaar9964e462007-05-05 17:54:07 +0000599 HiLink muttrcUnhook muttrcCommand
600 HiLink muttrcUnhookLine Error
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000601 HiLink muttrcAction Macro
602 HiLink muttrcBadAction Error
603 HiLink muttrcBindFunction Error
604 HiLink muttrcBindMenuList Error
605 HiLink muttrcFunction Macro
606 HiLink muttrcGroupKeyword muttrcCommand
607 HiLink muttrcGroupLine Error
608 HiLink muttrcSubscribeKeyword muttrcCommand
609 HiLink muttrcSubscribeLine Error
610 HiLink muttrcListsKeyword muttrcCommand
611 HiLink muttrcListsLine Error
612 HiLink muttrcAlternateKeyword muttrcCommand
613 HiLink muttrcAlternatesLine Error
614 HiLink muttrcAttachmentsLine muttrcCommand
615 HiLink muttrcAttachmentsFlag Type
616 HiLink muttrcAttachmentsMimeType String
617 HiLink muttrcColorLine Error
618 HiLink muttrcColorContext Error
619 HiLink muttrcColorContextI Identifier
620 HiLink muttrcColorKeyword muttrcCommand
621 HiLink muttrcColorKeywordI muttrcColorKeyword
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 HiLink muttrcColorField Identifier
Bram Moolenaar9964e462007-05-05 17:54:07 +0000623 HiLink muttrcColor Type
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000624 HiLink muttrcColorFG Error
625 HiLink muttrcColorFGI Error
626 HiLink muttrcColorBG Error
627 HiLink muttrcColorBGI Error
628 HiLink muttrcMonoAttrib muttrcColor
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 HiLink muttrcMono muttrcCommand
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000630 HiLink muttrcSimplePat Identifier
Bram Moolenaar9964e462007-05-05 17:54:07 +0000631 HiLink muttrcSimplePatString Macro
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000632 HiLink muttrcSimplePatMetas Special
633 HiLink muttrcPattern Type
634 HiLink muttrcPatternInner Error
635 HiLink muttrcUnColorLine Error
636 HiLink muttrcUnColorKeyword muttrcCommand
637 HiLink muttrcUnColorIndex Identifier
638 HiLink muttrcShellString muttrcEscape
639 HiLink muttrcRXHooks muttrcCommand
640 HiLink muttrcRXHookNot Type
641 HiLink muttrcPatHooks muttrcCommand
642 HiLink muttrcPatHookNot Type
Bram Moolenaar446cb832008-06-24 21:56:24 +0000643 HiLink muttrcFormatConditionals2 Type
644 HiLink muttrcIndexFormatStr muttrcString
645 HiLink muttrcIndexFormatEscapes muttrcEscape
646 HiLink muttrcIndexFormatConditionals muttrcFormatConditionals2
647 HiLink muttrcAliasFormatStr muttrcString
648 HiLink muttrcAliasFormatEscapes muttrcEscape
649 HiLink muttrcAttachFormatStr muttrcString
650 HiLink muttrcAttachFormatEscapes muttrcEscape
651 HiLink muttrcAttachFormatConditionals muttrcFormatConditionals2
652 HiLink muttrcComposeFormatStr muttrcString
653 HiLink muttrcComposeFormatEscapes muttrcEscape
654 HiLink muttrcFolderFormatStr muttrcString
655 HiLink muttrcFolderFormatEscapes muttrcEscape
656 HiLink muttrcFolderFormatConditionals muttrcFormatConditionals2
657 HiLink muttrcMixFormatStr muttrcString
658 HiLink muttrcMixFormatEscapes muttrcEscape
659 HiLink muttrcMixFormatConditionals muttrcFormatConditionals2
660 HiLink muttrcPGPFormatStr muttrcString
661 HiLink muttrcPGPFormatEscapes muttrcEscape
662 HiLink muttrcPGPFormatConditionals muttrcFormatConditionals2
663 HiLink muttrcPGPCmdFormatStr muttrcString
664 HiLink muttrcPGPCmdFormatEscapes muttrcEscape
665 HiLink muttrcPGPCmdFormatConditionals muttrcFormatConditionals2
666 HiLink muttrcStatusFormatStr muttrcString
667 HiLink muttrcStatusFormatEscapes muttrcEscape
668 HiLink muttrcStatusFormatConditionals muttrcFormatConditionals2
669 HiLink muttrcPGPGetKeysFormatStr muttrcString
670 HiLink muttrcPGPGetKeysFormatEscapes muttrcEscape
671 HiLink muttrcSmimeFormatStr muttrcString
672 HiLink muttrcSmimeFormatEscapes muttrcEscape
673 HiLink muttrcSmimeFormatConditionals muttrcFormatConditionals2
674 HiLink muttrcTimeEscapes muttrcEscape
675 HiLink muttrcPGPTimeEscapes muttrcEscape
676 HiLink muttrcStrftimeEscapes Type
677 HiLink muttrcFormatErrors Error
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678
Bram Moolenaar9964e462007-05-05 17:54:07 +0000679 HiLink muttrcBindFunctionNL SpecialChar
680 HiLink muttrcBindKeyNL SpecialChar
681 HiLink muttrcBindMenuListNL SpecialChar
682 HiLink muttrcMacroDescrNL SpecialChar
683 HiLink muttrcMacroBodyNL SpecialChar
684 HiLink muttrcMacroKeyNL SpecialChar
685 HiLink muttrcMacroMenuListNL SpecialChar
686 HiLink muttrcColorMatchCountNL SpecialChar
687 HiLink muttrcColorNL SpecialChar
688 HiLink muttrcColorRXNL SpecialChar
689 HiLink muttrcColorBGNL SpecialChar
690 HiLink muttrcColorFGNL SpecialChar
691 HiLink muttrcAliasNameNL SpecialChar
692 HiLink muttrcAliasENNL SpecialChar
693 HiLink muttrcAliasNL SpecialChar
694 HiLink muttrcUnAliasNL SpecialChar
695 HiLink muttrcAliasGroupDefNL SpecialChar
696 HiLink muttrcAliasEncEmailNL SpecialChar
697 HiLink muttrcPatternNL SpecialChar
698 HiLink muttrcUnColorPatNL SpecialChar
699 HiLink muttrcUnColorAPNL SpecialChar
700 HiLink muttrcUnColorIndexNL SpecialChar
701
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 delcommand HiLink
703endif
704
705let b:current_syntax = "muttrc"
706
Bram Moolenaar446cb832008-06-24 21:56:24 +0000707"EOF vim: ts=8 noet tw=100 sw=8 sts=0 ft=vim