From 78b2af5cc82ff039353a0c0b7abc4414292d7d52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorben=20G=C3=BCnther?= Date: Fri, 9 Dec 2022 01:15:29 +0100 Subject: [PATCH] gitsendemail: Support patch series Had a false negative, where a missing prefix is not correctly detected if the patch is part of a series. --- after/syntax/gitsendemail.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/after/syntax/gitsendemail.vim b/after/syntax/gitsendemail.vim index 90273d5..9b8fa07 100644 --- a/after/syntax/gitsendemail.vim +++ b/after/syntax/gitsendemail.vim @@ -1 +1 @@ -syn match Error "\[PATCH\s\=v\=[0-9]*\]" contained containedin=mailSubject +syn match Error "\[PATCH\s\=v\=\d*\s\=\(\d/\d\)\=\]" contained containedin=mailSubject -- 2.44.0