about summary refs log tree commit diff stats
path: root/shell/trace.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-06-03 14:49:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-06-03 14:49:49 -0700
commitb9ad848cff8977fdb9d29915675e7a448b5292cc (patch)
tree65f02d249c819af4a38c7122c9dfe82009f31e10 /shell/trace.mu
parent63cd30d8067ebde958b72e0cd8262b2d6f9d3c8e (diff)
downloadmu-b9ad848cff8977fdb9d29915675e7a448b5292cc.tar.gz
.
Diffstat (limited to 'shell/trace.mu')
-rw-r--r--shell/trace.mu7
1 files changed, 3 insertions, 4 deletions
diff --git a/shell/trace.mu b/shell/trace.mu
index 3b58b5f7..63ee3a53 100644
--- a/shell/trace.mu
+++ b/shell/trace.mu
@@ -894,12 +894,11 @@ fn render-trace-menu screen: (addr screen) {
   set-cursor-position screen, 0/x, y
   draw-text-rightward-from-cursor screen, " enter/bksp ", width, 0/fg, 0x5c/bg=black
   draw-text-rightward-from-cursor screen, " expand/collapse  ", width, 7/fg, 0xc5/bg=blue-bg
-  draw-text-rightward-from-cursor screen, " ctrl+... ", width, 0xf/fg, 0xc5/bg=blue-bg
-  draw-text-rightward-from-cursor screen, " r ", width, 0/fg, 0x5c/bg=black
+  draw-text-rightward-from-cursor screen, " ^r ", width, 0/fg, 0x5c/bg=black
   draw-text-rightward-from-cursor screen, " run main  ", width, 7/fg, 0xc5/bg=blue-bg
-  draw-text-rightward-from-cursor screen, " m ", width, 0/fg, 3/bg=keyboard
+  draw-text-rightward-from-cursor screen, " ^m ", width, 0/fg, 3/bg=keyboard
   draw-text-rightward-from-cursor screen, " to keyboard  ", width, 7/fg, 0xc5/bg=blue-bg
-  draw-text-rightward-from-cursor screen, " s ", width, 0/fg, 3/bg=keyboard
+  draw-text-rightward-from-cursor screen, " ^s ", width, 0/fg, 3/bg=keyboard
   draw-text-rightward-from-cursor screen, " show whole line  ", width, 7/fg, 0xc5/bg=blue-bg
 }