提交 d02be784 编写于 作者: M Matt Bierner

Show progress during update JS/TS imports

Fixes #64986
上级 90f36693
......@@ -38,7 +38,12 @@ class UpdateImportsOnFileRenameHandler extends Disposable {
super();
this._register(vscode.workspace.onDidRenameFile(e => {
this.doRename(e.oldUri, e.newUri);
vscode.window.withProgress({
location: vscode.ProgressLocation.Window,
title: localize('renameProgress.title', "Checking for update of JS/TS imports")
}, () => {
return this.doRename(e.oldUri, e.newUri);
});
}));
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册