1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-11 13:00:41 +03:00

Highlight inline patches and signatures in mail.kak

We already pull in the diff module in mail.kak to enable the nice
:diff-jump behaviour on inline patches. Also enable the shared/diff/
highlighter underneath our shared/mail/ highlighter for inline diffs,
listing it first so mail patterns take precedence over diff patterns.

De-emphasise signatures including the standard '^-- \n' separator in the
same way as quoted text in a reply.

Fixes: https://github.com/mawww/kakoune/issues/4998
This commit is contained in:
Chris Webb 2023-12-10 11:42:32 +00:00
parent 7f49395cf9
commit 8a14fbc15b

View File

@ -21,8 +21,10 @@ 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 <[^@>]+@.*?> 0:string
add-highlighter shared/mail/ regex ^>.*?$ 0:comment
add-highlighter shared/mail/ regex ^--\ \n.* 0:comment
}