提交 c332a2e4 编写于 作者: J Johannes Rieken

return `undefined` from detached editor, #18797

上级 abad8fa8
......@@ -501,7 +501,9 @@ class ExtHostTextEditor implements vscode.TextEditor {
// ---- the document
get document(): vscode.TextDocument {
return this._documentData.document;
return this._documentData
? this._documentData.document
: undefined;
}
set document(value) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册