d49555fc75
That means we can now have highlighters active at global, buffer, and window scope. The add-highlighter and remove-highlighter syntax changed to take the parent path (scope/group/...) as a mandatory argument, superseeding the previous -group switch.
12 lines
538 B
Plaintext
12 lines
538 B
Plaintext
hook global BufCreate .+\.eml %{
|
|
set buffer filetype mail
|
|
}
|
|
|
|
add-highlighter shared/ group mail
|
|
add-highlighter shared/mail regex ^(From|To|Cc|Bcc|Subject|Reply-To|In-Reply-To):([^\n]*(?:\n\h+[^\n]+)*)$ 1:keyword 2:attribute
|
|
add-highlighter shared/mail regex <[^@>]+@.*?> 0:string
|
|
add-highlighter shared/mail regex ^>.*?$ 0:comment
|
|
|
|
hook -group mail-highlight global WinSetOption filetype=mail %{ add-highlighter window ref mail }
|
|
hook -group mail-highlight global WinSetOption filetype=(?!mail).* %{ remove-highlighter window/mail }
|