We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b58686c commit a9be0c6Copy full SHA for a9be0c6
src/terminalLinkProvider.ts
@@ -27,7 +27,7 @@ export function configureTerminalLinkProvider(
27
_token: vscode.CancellationToken,
28
): vscode.ProviderResult<TerminalLinkWithData[]> => {
29
const regex =
30
- /(?:\((?<app>[_a-z0-9]+) \d+.\d+.\d+\) )(?<file>[_a-z0-9/]*[_a-z0-9]+.ex):(?<line>\d+)/;
+ /(?:\((?<app>[_a-z0-9]+) \d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?\) )(?<file>[_a-z0-9/]*[_a-z0-9]+\.ex):(?<line>\d+)/;
31
const matches = context.line.match(regex);
32
if (matches === null) {
33
return [];
0 commit comments