From d626043a2d6eb80a75e0368439d8d4349c825632 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 13 Aug 2021 16:58:01 -0700 Subject: [PATCH] . --- browse-slack/environment.mu | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/browse-slack/environment.mu b/browse-slack/environment.mu index 460c8fc2..2e177f97 100644 --- a/browse-slack/environment.mu +++ b/browse-slack/environment.mu @@ -249,15 +249,15 @@ fn render-main-menu screen: (addr screen), _env: (addr environment) { 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, " Tab ", width, 0/fg 0xf/bg - draw-text-rightward-from-cursor screen, " to channels ", width, 0xf/fg, 0/bg + draw-text-rightward-from-cursor screen, " go to channels ", 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, " << 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, " < 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, " 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 + draw-text-rightward-from-cursor screen, " page >> ", width, 0xf/fg, 0/bg } fn render-channels-menu screen: (addr screen), _env: (addr environment) { @@ -277,7 +277,7 @@ fn render-channels-menu screen: (addr screen), _env: (addr environment) { 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, " Tab ", width, 0/fg 0xf/bg - draw-text-rightward-from-cursor screen, " to items ", width, 0xf/fg, 0/bg + draw-text-rightward-from-cursor screen, " go to items ", width, 0xf/fg, 0/bg draw-text-rightward-from-cursor screen, " Enter ", width, 0/fg 0xf/bg draw-text-rightward-from-cursor screen, " select ", width, 0xf/fg, 0/bg }