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:37:11 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-15 20:37:11 -0700
commit6fdfd5607bc28e04f5c122ef9585489c2d8c9cfe (patch)
tree09504c2a57d64aa04c2b1d37370f7618160003c2 /apps/tile/main.mu
parent49ed062cb1fd364d6c794db4092920d54d516abc (diff)
downloadmu-6fdfd5607bc28e04f5c122ef9585489c2d8c9cfe.tar.gz
7034
Finally following up on commit 7020. Ctrl-a and ctrl-e now work, but word-wise
motions are still showing some funkiness.
Diffstat (limited to 'apps/tile/main.mu')
-rw-r--r--apps/tile/main.mu2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/tile/main.mu b/apps/tile/main.mu
index 611289f9..57def626 100644
--- a/apps/tile/main.mu
+++ b/apps/tile/main.mu
@@ -77,6 +77,8 @@ fn test {
   initialize-environment-with-fake-screen env, 5, 0xa
   var g/eax: grapheme <- copy 0x61  # 'a'
   process env, g
+  g <- copy 0x20  # space
+  process env, g
   g <- copy 1  # 'ctrl-a'
   process env, g
   g <- copy 5  # 'ctrl-e'