Interface IIdentifiedSingleEditOperation
Expand description
interface IIdentifiedSingleEditOperation {
forceMoveMarkers?: boolean;
range: IRange;
text: string;
}Properties§
§§§
force Move Markers?: booleanThis indicates that this operation has "insert" semantics.
i.e. forceMoveMarkers = true => if range is collapsed, all markers at the position will be moved.
range: IRangeThe range to replace. This can be empty to emulate a simple insert.
text: stringThe text to replace with. This can be null to emulate a simple delete.
A single edit operation, that has an identifier.