Repository Aware Issue Navigation in Multi-Repo Workspace
I want to use the issue navigation feature in a PyCharm project consisting of several repositories (attached to the same workspace). Each has its own issue list to refer to. They use the same pattern for their commit messages. Thus, it is not possible to distinguish them by using different regular expressions.
Is there a way to assign issue navigation entries to a specific repository in the workspace it is applied on?
Example:
- entry1: `^(\d+)\-.*?\:` links `github.com/me/repoA/issues/$1` for repository A
- entry2: `^(\d+)\-.*?\:` links `github.com/me/repoB/issues/$1` for repository B
Another option would be to inject the repository name in the replacement pattern. Seems not es flexible though.
Example:
entry: `^(\d+)\-.*?\:` links `github.com/me/${reponame}/issues/$1` for all repositories
If there is no way for doing it, please consider this a feature request.
Please sign in to leave a comment.