lrbarber commented on issue #986:
URL:
https://github.com/apache/daffodil-vscode/issues/986#issuecomment-2004650029
The code added from the that jw3 added 3 years ago (src/infoset.ts) appears
to be unchanged:
```
ctx.subscriptions.push(vscode.commands.registerCommand('infoset.diff',
async () => {
if(sid !== undefined){
let path = ensure(tmp(sid));
let prev = ensure(`${path}.prev`);
vscode.commands.executeCommand ('vscode.diff', Uri.parse(prev),
Uri.parse(path), "Previous ↔ Current");
}
```
I wonder if this is as simple as someone removing the code that used to
create the .prev file.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]