about summary refs log tree commit diff stats
path: root/100trace_browser.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-03-08 21:48:04 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-03-08 21:48:04 -0800
commitcaf17905860d807ae473a51fdda6f14b7e677b1a (patch)
treeb6cc191fbd467bba5365d6c1bac22da0e668c165 /100trace_browser.cc
parent06f207f315485b22a2ac519b71d89c0922c2f3d2 (diff)
downloadmu-caf17905860d807ae473a51fdda6f14b7e677b1a.tar.gz
3766
Diffstat (limited to '100trace_browser.cc')
-rw-r--r--100trace_browser.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/100trace_browser.cc b/100trace_browser.cc
index 74ec39b4..e8f47890 100644
--- a/100trace_browser.cc
+++ b/100trace_browser.cc
@@ -35,9 +35,9 @@
 //:   `g` or `home`: Move cursor to start of trace.
 //:   `G` or `end`: Move cursor to end of trace.
 //:
-//:   `H`: Move cursor to top line on screen.
-//:   `M`: Move cursor to center line on screen.
-//:   `L`: Move cursor to bottom line on screen.
+//:   `t`: Move cursor to top line on screen.
+//:   `c`: Move cursor to center line on screen.
+//:   `b`: Move cursor to bottom line on screen.
 
 :(before "End Primitive Recipe Declarations")
 _BROWSE_TRACE,
@@ -102,15 +102,15 @@ void start_trace_browser() {
       // move cursor one line up
       if (Display_row > 0) --Display_row;
     }
-    if (key == 'H') {
+    if (key == 't') {
       // move cursor to top of screen
       Display_row = 0;
     }
-    if (key == 'M') {
+    if (key == 'c') {
       // move cursor to center of screen
       Display_row = tb_height()/2;
     }
-    if (key == 'L') {
+    if (key == 'b') {
       // move cursor to bottom of screen
       Display_row = tb_height()-1;
     }