On Tue, 12 Apr 2022 04:44:15 GMT, Daniel Jeliński <djelin...@openjdk.org> wrote:

> This patch adds clickable link to commit messages in IntelliJ's git log. 
> Example result:
> ![image](https://user-images.githubusercontent.com/30433125/162882312-6a9c7666-075d-47b7-9db5-22670b885e7b.png)

BTW, `\d` in regexps is a bit slower than `[0-9]`. It's because `[0-9]` matches 
only ASCII digits, while `\d` additional matches by extended unicode digits.

-------------

PR: https://git.openjdk.java.net/jdk/pull/8193

Reply via email to