From 4d8a1da36fa2f3fe0395ea4a032d3da745b8d228 Mon Sep 17 00:00:00 2001 From: epwalsh Date: Fri, 1 Dec 2023 18:26:54 +0000 Subject: [PATCH] chore(docs): auto generate docs --- doc/pomo.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/pomo.txt b/doc/pomo.txt index 5193293..3ce0f08 100644 --- a/doc/pomo.txt +++ b/doc/pomo.txt @@ -16,7 +16,7 @@ Lua. - 🪶 Lightweight and asynchronous - 💻 Written in Lua - ⚙️ Easily customizable and extendable -- ⏱️ Run multiple concurrent timers and repeat timers +- ⏱️ Run multiple concurrent timers and repeat timers, show/hide, pause/resume - ➕ Integrate with nvim-notify , |pomo-lualine|, and more @@ -34,6 +34,13 @@ COMMANDS *pomo-commands* is given, the latest timer is stopped. - `:TimerRepeat TIMELIMIT REPETITIONS [NAME]` to start a repeat timer, e.g. `:TimerRepeat 10s 2` to repeat a 10 second timer twice. +- `:TimerHide [TIMERID]` to hide the notifiers of a running timer, if the + notifiers support that. If no ID is given, the latest timer’s notifiers are + hidden. +- `:TimerShow [TIMERID]` the opposite of `:TimerHide`. +- `:TimerPause [TIMERID]` pause a timer. If no ID is given, the latest timer is + paused. +- `:TimerResume [TIMERID]` the opposite of `:TimerPause`. ==============================================================================