kakoune/rc/filetype/mail.kak

31 lines
1004 B
Plaintext
Raw Normal View History

hook global BufCreate .+\.eml %{
set-option buffer filetype mail
}
2019-04-11 01:48:46 +02:00
hook global WinSetOption filetype=mail %{
2019-03-13 19:15:59 +01:00
require-module mail
map buffer normal <ret> :diff-jump<ret>
hook -once -always window WinSetOption filetype=.* %{
unmap buffer normal <ret> :diff-jump<ret>
}
2019-03-13 19:15:59 +01:00
}
2019-04-11 01:48:46 +02: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 19:15:59 +01:00
provide-module mail %{
require-module diff
add-highlighter shared/mail group
add-highlighter shared/mail/ ref diff
2023-10-24 01:47:20 +02:00
add-highlighter shared/mail/ regex ^(From|To|Cc|Bcc|Subject|Reply-To|In-Reply-To|References|Date|Message-Id|User-Agent):([^\n]*(?:\n\h+[^\n]+)*)$ 1:keyword 2:attribute
add-highlighter shared/mail/ regex <[a-zA-Z0-9!#$%&'*+/=?^`{|}~.-]+@[a-zA-Z0-9!#$%&'*+/=?^`{|}~.-]+> 0:string
add-highlighter shared/mail/ regex ^>.*?$ 0:comment
add-highlighter shared/mail/ regex ^--\ \n.* 0:comment
2019-03-13 19:15:59 +01:00
}