Keep track of autos to be solved, shaves about 12% off of Elab.newt processing time

This commit is contained in:
2025-04-05 21:25:53 -07:00
parent 549cca19e3
commit eeb790f1b2
10 changed files with 134 additions and 90 deletions

View File

@@ -187,7 +187,7 @@ export function activate(context: vscode.ExtensionContext) {
console.error("Workspace folder not found");
return null;
}
let uri = vscode.Uri.file(path.join(root.uri.fsPath, entry.fc.file));
let uri = vscode.Uri.file(path.resolve(root.uri.fsPath, entry.fc.file));
let start = new vscode.Position(entry.fc.line, entry.fc.col);
let range = new vscode.Range(start, start);
return new vscode.Location(uri, range);