about summary refs log tree commit diff stats
path: root/manual_tests
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-05-20 08:55:45 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-20 08:55:45 -0700
commit7e6705a113c53bda16cf9d6ba937f79b9f98b307 (patch)
treede0c0fc00fa0065316711902607b46022ff2d93f /manual_tests
parent1c20d514f246903185b8df27dd3388e2147b7e5e (diff)
downloadtext.love-7e6705a113c53bda16cf9d6ba937f79b9f98b307.tar.gz
first stab at supporting wrapping in cursor up
Looks pretty clean.
Diffstat (limited to 'manual_tests')
-rw-r--r--manual_tests11
1 files changed, 11 insertions, 0 deletions
diff --git a/manual_tests b/manual_tests
index 83a0306..1f589fc 100644
--- a/manual_tests
+++ b/manual_tests
@@ -14,3 +14,14 @@ backspace
 
 enter
   cursor_pos == 0 -> insert empty line above current line
+
+scrolling:
+  given moby dick, a file containing all text:
+  page up moves top line on screen to bottom
+  page down moves bottom line on screen to top
+  cursor remains on screen
+  cursor remains on text line
+  'up' arrow with cursor at top of screen scrolls up one line (drawings still fully in or out)
+    if top line wrapped before, it scrolls up by only one screen line
+  'down' arrow with cursor at bottom of screen scrolls down one line (drawings still fully in or out)
+    if top line wrapped before, it scrolls down by only one screen line