2016-12-06 17:53:12 +01:00
|
|
|
hook global BufCreate .+\.eml %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype mail
|
2016-12-06 17:53:12 +01:00
|
|
|
}
|
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/mail group
|
2018-07-19 10:39:44 +02:00
|
|
|
add-highlighter shared/mail/ regex ^(From|To|Cc|Bcc|Subject|Reply-To|In-Reply-To|Date):([^\n]*(?:\n\h+[^\n]+)*)$ 1:keyword 2:attribute
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/mail/ regex <[^@>]+@.*?> 0:string
|
|
|
|
add-highlighter shared/mail/ regex ^>.*?$ 0:comment
|
2013-02-21 13:36:25 +01:00
|
|
|
|
2018-11-28 10:39:15 +01:00
|
|
|
hook -group mail-highlight global WinSetOption filetype=mail %{
|
|
|
|
add-highlighter window/mail ref mail
|
|
|
|
hook -once -always window WinSetOption filetype=(?!mail).* %{ remove-highlighter window/mail }
|
|
|
|
}
|