about summary refs log tree commit diff stats
path: root/browse-slack/environment.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-08-13 09:55:23 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-08-13 09:55:23 -0700
commitbb990773186c7862241d3b5a57f3a4f1913773d8 (patch)
treebd27711b00c7af7017c8b3c148bbb43488ddfa53 /browse-slack/environment.mu
parentc746b06c3ac61d1b187c136989a030eaa35c4d83 (diff)
downloadmu-bb990773186c7862241d3b5a57f3a4f1913773d8.tar.gz
.
Diffstat (limited to 'browse-slack/environment.mu')
-rw-r--r--browse-slack/environment.mu12
1 files changed, 6 insertions, 6 deletions
diff --git a/browse-slack/environment.mu b/browse-slack/environment.mu
index db7a21ad..b14f6f6c 100644
--- a/browse-slack/environment.mu
+++ b/browse-slack/environment.mu
@@ -144,14 +144,14 @@ fn render-menu screen: (addr screen) {
   set-cursor-position screen, 2/x, y
   draw-text-rightward-from-cursor screen, " / ", width, 0/fg 0xf/bg
   draw-text-rightward-from-cursor screen, " search  ", width, 0xf/fg, 0/bg
-  draw-text-rightward-from-cursor screen, " ^f ", width, 0/fg 0xf/bg
-  draw-text-rightward-from-cursor screen, " next page  ", width, 0xf/fg, 0/bg
   draw-text-rightward-from-cursor screen, " ^b ", width, 0/fg 0xf/bg
-  draw-text-rightward-from-cursor screen, " previous page  ", width, 0xf/fg, 0/bg
-  draw-text-rightward-from-cursor screen, " ^n ", width, 0/fg 0xf/bg
-  draw-text-rightward-from-cursor screen, " next item  ", width, 0xf/fg, 0/bg
+  draw-text-rightward-from-cursor screen, " << previous page  ", width, 0xf/fg, 0/bg
   draw-text-rightward-from-cursor screen, " ^p ", width, 0/fg 0xf/bg
-  draw-text-rightward-from-cursor screen, " previous item  ", width, 0xf/fg, 0/bg
+  draw-text-rightward-from-cursor screen, " < previous item  ", width, 0xf/fg, 0/bg
+  draw-text-rightward-from-cursor screen, " ^n ", width, 0/fg 0xf/bg
+  draw-text-rightward-from-cursor screen, " next item >  ", width, 0xf/fg, 0/bg
+  draw-text-rightward-from-cursor screen, " ^f ", width, 0/fg 0xf/bg
+  draw-text-rightward-from-cursor screen, " next page >>  ", width, 0xf/fg, 0/bg
 }
 
 fn render-item screen: (addr screen), _item: (addr item), _users: (addr array user), y: int, screen-height: int -> _/ecx: int {