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