diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-08-28 17:19:54 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-08-28 17:19:54 -0700 |
commit | 57bfcad029b8705fb06dd0e67a03fd6040e4ffab (patch) | |
tree | 6af7d580c8f73b17be3d9c6235eb980f9228477f | |
parent | bbf614a77f5f7ce89001361b07f75ee8f55c86c1 (diff) | |
download | mu-57bfcad029b8705fb06dd0e67a03fd6040e4ffab.tar.gz |
2092
-rw-r--r-- | edit.mu | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/edit.mu b/edit.mu index 5af22a1f..03317273 100644 --- a/edit.mu +++ b/edit.mu @@ -6567,7 +6567,7 @@ after +handle-special-character [ # undo typing -scenario editor-undo-typing [ +scenario editor-can-undo-typing [ # create an editor and type a character assume-screen 10/width, 5/height 1:address:array:character <- new [] @@ -6656,7 +6656,7 @@ after +handle-undo [ } ] -scenario editor-undo-typing-multiple [ +scenario editor-can-undo-typing-multiple [ # create an editor and type multiple characters assume-screen 10/width, 5/height 1:address:array:character <- new [] @@ -6684,7 +6684,7 @@ scenario editor-undo-typing-multiple [ ] ] -scenario editor-undo-typing-multiple-2 [ +scenario editor-can-undo-typing-multiple-2 [ # create an editor with some text assume-screen 10/width, 5/height 1:address:array:character <- new [a] @@ -6850,7 +6850,7 @@ after +handle-redo [ # undo cursor movement and scroll -scenario editor-undo-touch [ +scenario editor-can-undo-touch [ # create an editor with some text assume-screen 10/width, 5/height 1:address:array:character <- new [abc @@ -6862,7 +6862,7 @@ ghi] left-click 3, 1 ] editor-event-loop screen:address, console:address, 2:address:editor-data - # now undo + # undo assume-console [ type [z] # ctrl-z ] |