In VS Code output panel, writing a URL with http(s):// can be detected as a link. Of course file links (the file_name.ext:line_number:column
format) can be detected in terminal. Is it possible to file link to be detected in output panel, too?
Here’s an initial code put inside activate()
in extension.ts:
let out = vscode.window.createOutputChannel("sample");
out.append("./file.txt:3");
out.show();
Here’s a screenshot for output panel with a sample workspace folder. It’s not detected as a link.