浏览代码

Fixes because of change in vscode error message

main
Eric Amodio 4 年前
父节点
当前提交
0fa822a756
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. +5
    -1
      src/trackers/documentTracker.ts

+ 5
- 1
src/trackers/documentTracker.ts 查看文件

@ -260,7 +260,11 @@ export class DocumentTracker implements Disposable {
const msg = ex.toString();
if (msg.includes('File seems to be binary and cannot be opened as text')) {
document = new BinaryTextDocument(documentOrId);
} else if (msg.includes('File not found')) {
} else if (
msg.includes('File not found') ||
msg.includes('Unable to read file') ||
msg.includes('Unable to resolve non-existing file')
) {
// If we can't find the file, assume it is because the file has been renamed or deleted at some point
document = new MissingRevisionTextDocument(documentOrId);

正在加载...
取消
保存