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-15 20:46:01 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-15 20:46:01 -0700
commit70da3b384695acc628c31922d1ed2d14da2a3eed (patch)
treeadaec94e2a409e283ea704fbfa023efcf3514d59 /apps/tile/main.mu
parent6fdfd5607bc28e04f5c122ef9585489c2d8c9cfe (diff)
downloadmu-70da3b384695acc628c31922d1ed2d14da2a3eed.tar.gz
7035
ctrl-f and ctrl-b working right. Now ctrl-u is segfaulting. Also expanding
words.
Diffstat (limited to 'apps/tile/main.mu')
-rw-r--r--apps/tile/main.mu8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/tile/main.mu b/apps/tile/main.mu
index 57def626..24d82fbf 100644
--- a/apps/tile/main.mu
+++ b/apps/tile/main.mu
@@ -79,9 +79,13 @@ fn test {
   process env, g
   g <- copy 0x20  # space
   process env, g
-  g <- copy 1  # 'ctrl-a'
+  g <- copy 0x62  # 'b'
   process env, g
-  g <- copy 5  # 'ctrl-e'
+  g <- copy 0x20  # space
+  process env, g
+  g <- copy 0x63  # 'c'
+  process env, g
+  g <- copy 2  # 'ctrl-b'
   process env, g
   render env
 }