aboutsummaryrefslogtreecommitdiff
path: root/lib/help_screen.ml
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2024-05-19 08:50:31 -0500
committerMarc Coquand <marc@mccd.space>2024-05-19 08:50:31 -0500
commitc3a52f259f3a3b70ab25fba98ab7450e0fa69e67 (patch)
tree24b4994f2d511d12a2381a2a208b99b9f190baad /lib/help_screen.ml
parent7a368aa5dc39bc3550675a82558513c58d9603bd (diff)
downloadstitch-c3a52f259f3a3b70ab25fba98ab7450e0fa69e67.tar.gz
stitch-c3a52f259f3a3b70ab25fba98ab7450e0fa69e67.tar.bz2
stitch-c3a52f259f3a3b70ab25fba98ab7450e0fa69e67.zip
Change headers for views
Diffstat (limited to 'lib/help_screen.ml')
-rw-r--r--lib/help_screen.ml12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/help_screen.ml b/lib/help_screen.ml
index 4c607e2..0759d26 100644
--- a/lib/help_screen.ml
+++ b/lib/help_screen.ml
@@ -26,9 +26,9 @@ let general_help_menu =
; "Down", "Ctrl-n, j"
; "Up", "Ctrl-p, k"
; "Regexp Search", "s"
- ; "Note View", "1"
- ; "Todo View", "2"
- ; "Done View", "3"
+ ; "Notes", "1"
+ ; "Todo", "2"
+ ; "Done", "3"
; "Run Shell Command", "!"
; "Edit File in $EDITOR", "Enter, e"
]
@@ -69,19 +69,19 @@ let rec render t ({ go_back } as state) =
let note_length, note_img =
render_menu
~menu:note_view_menu
- ~title:"Note View"
+ ~title:"Notes"
~start_y:(general_length + info_length + 2)
in
let todo_length, todo_img =
render_menu
~menu:todo_view_menu
- ~title:"Todo View"
+ ~title:"Todo"
~start_y:(note_length + general_length + info_length + 3)
in
let _, done_img =
render_menu
~menu:done_view_menu
- ~title:"Done View"
+ ~title:"Done"
~start_y:(todo_length + note_length + general_length + info_length + 4)
in
info_img </> general_img </> note_img </> todo_img </> done_img