2016-12-06 17:53:12 +01:00
|
|
|
hook global BufCreate .+\.eml %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype mail
|
2016-12-06 17:53:12 +01:00
|
|
|
}
|
|
|
|
|
2019-04-11 01:48:46 +02:00
|
|
|
hook global WinSetOption filetype=mail %{
|
2019-03-13 19:15:59 +01:00
|
|
|
require-module mail
|
2022-07-30 22:28:02 +02:00
|
|
|
map buffer normal <ret> :diff-jump<ret>
|
2021-12-31 09:26:49 +01:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{
|
2022-07-30 22:28:02 +02:00
|
|
|
unmap buffer normal <ret> :diff-jump<ret>
|
2021-12-31 09:26:49 +01:00
|
|
|
}
|
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 %{
|
|
|
|
|
2021-12-31 09:26:49 +01:00
|
|
|
require-module diff
|
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/mail group
|
2020-04-21 05:18:46 +02: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
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/mail/ regex <[^@>]+@.*?> 0:string
|
|
|
|
add-highlighter shared/mail/ regex ^>.*?$ 0:comment
|
2013-02-21 13:36:25 +01:00
|
|
|
|
2019-03-13 19:15:59 +01:00
|
|
|
}
|