kakoune/rc/filetype/mail.kak

22 lines
651 B
Plaintext
Raw Normal View History

hook global BufCreate .+\.eml %{
set-option buffer filetype mail
}
2019-03-13 19:15:59 +01:00
hook -once global BufSetOption filetype=mail %{
require-module mail
}
provide-module mail %{
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
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/mail ref mail
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/mail }
}
2019-03-13 19:15:59 +01:00
}