From 0621ed950ede2887ee279a8958dd69a7c83e331e Mon Sep 17 00:00:00 2001 From: leo Date: Wed, 16 Oct 2024 14:57:45 +0800 Subject: [PATCH] enhance: update keywords prefix regex --- src/Views/Histories.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/Histories.axaml.cs b/src/Views/Histories.axaml.cs index 35455d01..50c0cf6a 100644 --- a/src/Views/Histories.axaml.cs +++ b/src/Views/Histories.axaml.cs @@ -308,7 +308,7 @@ namespace SourceGit.Views [GeneratedRegex(@"^(\[[\w\s]+\])")] private static partial Regex REG_KEYWORD_FORMAT1(); - [GeneratedRegex(@"^(\w+\s?:)")] + [GeneratedRegex(@"^(\w+\s?:)\s")] private static partial Regex REG_KEYWORD_FORMAT2(); private List _matches = null;