kakoune/rc/filetype/mail.kak
Johannes Altmanninger 395f438378 Remove unnecessary leading space in prompt from mappings
We often use the pattern «map global normal ": foo"».  The space
after the colon is unnecessary since execution of the mapping won't
add to history anyway, since 217dd6a1d (Disable history when executing
maps, 2015-11-10).
With the parent commit, the space is no longer necessary for user
mappings, so there is no reason to continue the cargo-cult.

Remove the space from mappings to set a good example.
2022-08-01 07:37:02 +02:00

29 lines
836 B
Plaintext

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/ 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
}