summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorFederico Igne <undyamon@disroot.org>2024-01-23 18:08:56 +0100
committerFederico Igne <undyamon@disroot.org>2024-01-23 18:08:56 +0100
commit482e8b80fa66e328e252567c915f5e96e727f7cf (patch)
tree4b712f227ae1926a744f2dc2e2df85ece3da1e43 /bin
parent7d009e0ca4a1af10cc6d31fb5982e38dcab9ee71 (diff)
downloadsandy-482e8b80fa66e328e252567c915f5e96e727f7cf.tar.gz
sandy-482e8b80fa66e328e252567c915f5e96e727f7cf.zip
feat: add simple status bar with timed status message support
Diffstat (limited to 'bin')
-rw-r--r--bin/main.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/main.ml b/bin/main.ml
index 932c452..e763f70 100644
--- a/bin/main.ml
+++ b/bin/main.ml
@@ -4,5 +4,5 @@ let () =
4 let open Editor in 4 let open Editor in
5 let cli = Config.parse Sys.argv in 5 let cli = Config.parse Sys.argv in
6 let editor = Editor.init cli in 6 let editor = Editor.init cli in
7 let rec loop () = Action.(render *> handle_next_command >>= loop) in 7 let rec loop () = Action.(render *> handle_next_command *> tick >>= loop) in
8 Action.eval ~editor loop 8 Action.eval ~editor loop