mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
strict null trouble
This commit is contained in:
@@ -607,7 +607,7 @@ export class ExtHostTextEditor implements vscode.TextEditor {
|
||||
});
|
||||
|
||||
return this._proxy.$tryApplyEdits(this._id, editData.documentVersionId, edits, {
|
||||
setEndOfLine: TypeConverters.EndOfLine.from(editData.setEndOfLine),
|
||||
setEndOfLine: editData.setEndOfLine && TypeConverters.EndOfLine.from(editData.setEndOfLine),
|
||||
undoStopBefore: editData.undoStopBefore,
|
||||
undoStopAfter: editData.undoStopAfter
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user