Change Show FC format to match vscode's expectation

This commit is contained in:
2025-10-11 16:36:23 -07:00
parent c39d1354c8
commit ddc73fb41a
6 changed files with 11 additions and 11 deletions

View File

@@ -440,7 +440,7 @@ const processOutput = (
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
const match = line.match(
/(INFO|ERROR) at ([^:]+):\((\d+):(\d+)-(\d+):(\d+)\):\s*(.*)/
/(INFO|ERROR) at ([^:]+):(\d+):(\d+)--(\d+):(\d+):\s*(.*)/
);
if (match) {
let [_full, kind, file, line, col, eline, ecol, message] = match;