1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-24 07:53:41 +03:00
kakoune/rc/filetype/mail.kak

23 lines
657 B
Plaintext
Raw Normal View History

hook global BufCreate .+\.eml %{
set-option buffer filetype mail
}
2019-04-11 02:48:46 +03:00
hook global WinSetOption filetype=mail %{
2019-03-13 21:15:59 +03:00
require-module mail
}
2019-04-11 02:48:46 +03:00
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 21:15:59 +03:00
provide-module mail %{
add-highlighter shared/mail group
2020-04-21 06:18:46 +03:00
add-highlighter shared/mail/ regex ^(From|To|Cc|Bcc|Subject|Reply-To|In-Reply-To|References|Date):([^\n]*(?:\n\h+[^\n]+)*)$ 1:keyword 2:attribute
add-highlighter shared/mail/ regex <[^@>]+@.*?> 0:string
add-highlighter shared/mail/ regex ^>.*?$ 0:comment
2019-03-13 21:15:59 +03:00
}