提交 1be0f0b9 编写于 作者: J Johannes Rieken

bulk: return early if edit does nothing

上级 11350bdd
......@@ -389,6 +389,10 @@ export class BulkEditService implements IBulkEditService {
async apply(edit: WorkspaceEdit, options?: IBulkEditOptions): Promise<IBulkEditResult> {
if (edit.edits.length === 0) {
return { ariaSummary: localize('nothing', "Made no edits") };
}
if (this._previewHandler && options?.showPreview) {
edit = await this._previewHandler(edit, options);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册