2016-12-06 17:53:12 +01:00
|
|
|
hook global BufCreate .+\.eml %{
|
|
|
|
set buffer filetype mail
|
|
|
|
}
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group / group mail
|
|
|
|
add-highlighter -group /mail regex ^(From|To|Cc|Bcc|Subject|Reply-To|In-Reply-To):([^\n]*(?:\n\h+[^\n]+)*)$ 1:keyword 2:attribute
|
|
|
|
add-highlighter -group /mail regex <[^@>]+@.*?> 0:string
|
|
|
|
add-highlighter -group /mail regex ^>.*?$ 0:comment
|
2013-02-21 13:36:25 +01:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group mail-highlight global WinSetOption filetype=mail %{ add-highlighter ref mail }
|
|
|
|
hook -group mail-highlight global WinSetOption filetype=(?!mail).* %{ remove-highlighter mail }
|