2016-12-06 19:53:12 +03:00
|
|
|
hook global BufCreate .+\.eml %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer filetype mail
|
2016-12-06 19:53:12 +03:00
|
|
|
}
|
|
|
|
|
2018-07-01 12:53:35 +03:00
|
|
|
add-highlighter shared/mail group
|
2018-07-19 11:39:44 +03: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 12:53:35 +03:00
|
|
|
add-highlighter shared/mail/ regex <[^@>]+@.*?> 0:string
|
|
|
|
add-highlighter shared/mail/ regex ^>.*?$ 0:comment
|
2013-02-21 16:36:25 +04:00
|
|
|
|
2018-07-01 12:53:35 +03:00
|
|
|
hook -group mail-highlight global WinSetOption filetype=mail %{ add-highlighter window/mail ref mail }
|
2017-10-28 06:00:51 +03:00
|
|
|
hook -group mail-highlight global WinSetOption filetype=(?!mail).* %{ remove-highlighter window/mail }
|