diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-08-29 10:47:22 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-08-29 10:47:29 -0700 |
commit | 8c9fe6f477003424910939c1e79b79d24cf06b3b (patch) | |
tree | 3555be36d44905493635b68d78d90879b54512e5 | |
parent | 6c1376f8307a3c7b98dfd5ef09670bd15c05f399 (diff) | |
download | mu-8c9fe6f477003424910939c1e79b79d24cf06b3b.tar.gz |
2096 - clear redo when adding to undo
One drawback of my approach: if you move the cursor you lose your redo.
-rw-r--r-- | edit.mu | 62 |
1 files changed, 59 insertions, 3 deletions
diff --git a/edit.mu b/edit.mu index 3a70ffed..23f0974d 100644 --- a/edit.mu +++ b/edit.mu @@ -6636,10 +6636,21 @@ before +insert-character-end [ insert-to:address:duplex-list <- next-duplex insert-from op:address:operation <- new operation:type *op <- merge 0/insert-operation, save-row/before, save-column/before, top-before, *cursor-row/after, *cursor-column/after, top-after, insert-from, insert-to - *undo <- push op, *undo + editor <- add-operation editor, op +done-inserting-character ] +recipe add-operation [ + local-scope + editor:address:editor-data <- next-ingredient + op:address:operation <- next-ingredient + undo:address:address:list:address:operation <- get-address *editor, undo:offset + *undo <- push op *undo + redo:address:address:list:address:operation <- get-address *editor, redo:offset + *redo <- copy 0 + reply editor/same-as-ingredient:0 +] + after +handle-undo [ { typing:address:insert-operation <- maybe-convert *op, typing:variant @@ -6834,6 +6845,52 @@ scenario editor-redo-typing-empty [ ] ] +scenario editor-work-clears-redo-stack [ + # create an editor with some text, do some work, undo + assume-screen 10/width, 5/height + 1:address:array:character <- new [abc +def +ghi] + 2:address:editor-data <- new-editor 1:address:array:character, screen:address, 0/left, 10/right + editor-render screen, 2:address:editor-data + assume-console [ + type [1] + type [z] # ctrl-z + ] + 3:event/ctrl-z <- merge 0/text, 26/ctrl-z, 0/dummy, 0/dummy + replace-in-console 122/z, 3:event/ctrl-z + editor-event-loop screen:address, console:address, 2:address:editor-data + # do some more work + assume-console [ + type [0] + ] + editor-event-loop screen:address, console:address, 2:address:editor-data + screen-should-contain [ + . . + .0abc . + .def . + .ghi . + .┈┈┈┈┈┈┈┈┈┈. + ] + # redo + assume-console [ + type [y] # ctrl-y + ] + 4:event/ctrl-y <- merge 0/text, 25/ctrl-y, 0/dummy, 0/dummy + replace-in-console 121/y, 4:event/ctrl-y + run [ + editor-event-loop screen:address, console:address, 2:address:editor-data + ] + # nothing should happen + screen-should-contain [ + . . + .0abc . + .def . + .ghi . + .┈┈┈┈┈┈┈┈┈┈. + ] +] + after +handle-redo [ { typing:address:insert-operation <- maybe-convert *op, typing:variant @@ -6905,8 +6962,7 @@ before +move-cursor-end [ after-top-of-screen:address:duplex-list <- get *editor, top-of-screen:offset op:address:operation <- new operation:type *op <- merge 1/move-operation, before-cursor-row, before-cursor-column, before-top-of-screen, after-cursor-row, after-cursor-column, after-top-of-screen, 0/empty, 0/empty - undo:address:address:list <- get-address *editor, undo:offset - *undo <- push op, *undo + editor <- add-operation editor, op ] after +handle-undo [ |