提交 82ecf310 编写于 作者: R rebornix

fix #101362.

上级 d39db1c7
......@@ -84,7 +84,13 @@ export class NotebookEditorInput extends EditorInput {
async save(group: GroupIdentifier, options?: ISaveOptions): Promise<IEditorInput | undefined> {
if (this._textModel) {
await this._textModel.object.save();
if (this.isUntitled()) {
return this.saveAs(group, options);
} else {
await this._textModel.object.save();
}
return this;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册