Keep track of autos to be solved, shaves about 12% off of Elab.newt processing time
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user