blob: b6ef616fe7ca83e4522a08f038893ec4d99f82f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
hook global BufCreate .+\.eml %{
set-option buffer filetype mail
}
hook global WinSetOption filetype=mail %{
require-module mail
map buffer normal <ret> :diff-jump<ret>
hook -once -always window WinSetOption filetype=.* %{
unmap buffer normal <ret> :diff-jump<ret>
}
}
hook -group mail-highlight global WinSetOption filetype=mail %{
add-highlighter window/mail ref mail
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/mail }
}
provide-module mail %{
require-module diff
add-highlighter shared/mail group
add-highlighter shared/mail/ ref diff
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
}
|