commit f08d3c3a35f46d1d7997b499c3a9d75fdc2abc3b parent 2c4c3f99689483a55cf1ddea58d42030e5d10ee5 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Tue, 13 Jun 2023 21:40:48 +0200 Update the short help message Indicate how to quit help, i.e. by pressing the "Enter" key. Diffstat:
| M | diaposishell | | | 12 | +++++++----- |
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/diaposishell b/diaposishell @@ -48,11 +48,13 @@ cleanup_die() short_help() { - printf "G last\n" - printf "gg first\n" - printf "n|<enter> next\n" - printf "p previous\n" - printf "q quit\n" + printf "G last\n" + printf "gg first\n" + printf "n, Enter next\n" + printf "p previous\n" + printf "q quit\n" + printf "\n" + printf "Enter to return to presentation\n" } next_slide()