about summary refs log tree commit diff stats
path: root/apps/tile/main.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-10-18 22:48:11 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-18 22:48:11 -0700
commit956394017e9fc65ffaef8b943e0b70f8f72a25e1 (patch)
treed48413813ee8d8036188b193b8d1e6b3af8d8e62 /apps/tile/main.mu
parenta3ddc1bdb3f729b8eae0b0ac0a947399848f54b0 (diff)
downloadmu-956394017e9fc65ffaef8b943e0b70f8f72a25e1.tar.gz
7059
Cursor now in the right place after rename. But stack still doesn't show
the value of a name.
Diffstat (limited to 'apps/tile/main.mu')
-rw-r--r--apps/tile/main.mu9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/tile/main.mu b/apps/tile/main.mu
index aef42ce8..859862ec 100644
--- a/apps/tile/main.mu
+++ b/apps/tile/main.mu
@@ -77,9 +77,16 @@ fn test {
   initialize-environment-with-fake-screen env, 5, 0xa
   var g/eax: grapheme <- copy 0x31  # '1'
   process env, g
+  g <- copy 0x20  # space
+  process env, g
   g <- copy 0x32  # '2'
   process env, g
-  g <- copy 0x20  # space
+  render env
+  g <- copy 0x12  # 'ctrl-r'
+  process env, g
+  g <- copy 0x61  # 'a'
+  process env, g
+  g <- copy 0xa  # newline
   process env, g
   render env
 }