mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
enhance: use \S
instead of \w
to supports emoji character
This commit is contained in:
parent
3296f90feb
commit
bb45a5af8e
1 changed files with 1 additions and 1 deletions
|
@ -308,7 +308,7 @@ namespace SourceGit.Views
|
||||||
[GeneratedRegex(@"^\[[\w\s]+\]")]
|
[GeneratedRegex(@"^\[[\w\s]+\]")]
|
||||||
private static partial Regex REG_KEYWORD_FORMAT1();
|
private static partial Regex REG_KEYWORD_FORMAT1();
|
||||||
|
|
||||||
[GeneratedRegex(@"^\w+([\<\(][\w\s_\-\*,]+[\>\)])?\!?\s?:\s")]
|
[GeneratedRegex(@"^\S+([\<\(][\w\s_\-\*,]+[\>\)])?\!?\s?:\s")]
|
||||||
private static partial Regex REG_KEYWORD_FORMAT2();
|
private static partial Regex REG_KEYWORD_FORMAT2();
|
||||||
|
|
||||||
private List<Models.Hyperlink> _matches = null;
|
private List<Models.Hyperlink> _matches = null;
|
||||||
|
|
Loading…
Reference in a new issue