2016-12-06 19:53:12 +03:00
|
|
|
hook global BufCreate .+\.eml %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer filetype mail
|
2016-12-06 19:53:12 +03:00
|
|
|
}
|
|
|
|
|
2019-04-11 02:48:46 +03:00
|
|
|
hook global WinSetOption filetype=mail %{
|
2019-03-13 21:15:59 +03:00
|
|
|
require-module mail
|
2022-07-30 23:28:02 +03:00
|
|
|
map buffer normal <ret> :diff-jump<ret>
|
2021-12-31 11:26:49 +03:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{
|
2022-07-30 23:28:02 +03:00
|
|
|
unmap buffer normal <ret> :diff-jump<ret>
|
2021-12-31 11:26:49 +03:00
|
|
|
}
|
2019-03-13 21:15:59 +03:00
|
|
|
}
|
|
|
|
|
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 %{
|
|
|
|
|
2021-12-31 11:26:49 +03:00
|
|
|
require-module diff
|
|
|
|
|
2018-07-01 12:53:35 +03:00
|
|
|
add-highlighter shared/mail group
|
2023-12-10 14:42:32 +03:00
|
|
|
add-highlighter shared/mail/ ref diff
|
2023-10-24 02:47:20 +03: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
|
2024-03-05 23:56:09 +03:00
|
|
|
add-highlighter shared/mail/ regex <[a-zA-Z0-9!#$%&'*+/=?^`{|}~.-]+@[a-zA-Z0-9!#$%&'*+/=?^`{|}~.-]+> 0:string
|
2018-07-01 12:53:35 +03:00
|
|
|
add-highlighter shared/mail/ regex ^>.*?$ 0:comment
|
2023-12-10 14:42:32 +03:00
|
|
|
add-highlighter shared/mail/ regex ^--\ \n.* 0:comment
|
2013-02-21 16:36:25 +04:00
|
|
|
|
2019-03-13 21:15:59 +03:00
|
|
|
}
|