RFR: 8284720: IntelliJ: JIRA integration
Andrey Turbanov
aturbanov at openjdk.java.net
Wed Apr 13 08:39:17 UTC 2022
On Tue, 12 Apr 2022 04:44:15 GMT, Daniel Jeliński <djelinski at 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
More information about the ide-support-dev
mailing list