about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-08-28 08:56:12 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-08-28 08:56:12 -0700
commit011b34c04cad5f89fba4e1d7ccac8a66ea39e7f0 (patch)
tree96710b6c059a4c08da93c525df95263446d63667
parent7e47380a4f3f8725fdf369d97b4b204d46aaf164 (diff)
downloadmu-011b34c04cad5f89fba4e1d7ccac8a66ea39e7f0.tar.gz
2087
-rw-r--r--edit.mu5
1 files changed, 4 insertions, 1 deletions
diff --git a/edit.mu b/edit.mu
index 6fddf17b..fd1b8243 100644
--- a/edit.mu
+++ b/edit.mu
@@ -6730,6 +6730,8 @@ scenario editor-undo-typing-multiple-2 [
   ]
 ]
 
+# redo typing
+
 scenario editor-redo-typing [
   # create an editor, type something, undo
   assume-screen 10/width, 5/height
@@ -6849,12 +6851,13 @@ after +handle-redo [
 # undo delete sandbox as a separate primitive on the status bar
 # types of operations:
 #   typing
-#   cursor movement and scrolling
+#   cursor movement and scrolling (click, arrow keys, ctrl-a, ctrl-e, page up/down)
 #   delete (backspace, delete, ctrl-k, ctrl-u)
 # collapse runs
 #   of the same event (arrow keys, etc.)
 #   of typing that's not newline or backspace or tab
 # render entire screen blindly on undo/redo operations for now
+# support resize (will invalidate row/column)
 
 ## helpers for drawing editor borders