-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Milestone
Description
Allow an operation to be reverted so that user-specific undo can be supported. For example:
- User 1 types "abc"
- User 2 types "def"
- User 1 clicks undo
An operation reverting the first change would need to be generated so that "abc" is deleted and not "def", even though "def" was last typed into the document. In other words, op1 = { insert "abc" }; revert(op1) = { delete 3, skip 3 }.
Reactions are currently unavailable