From dc15a75b635cb472e4ffcb9fd0096488ed14424a Mon Sep 17 00:00:00 2001 From: Duncan Overbruck Date: Wed, 5 Feb 2020 14:06:47 +0100 Subject: [PATCH] mcom: add preview alias for show command --- man/mcom.1 | 5 ++++- mcom | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/man/mcom.1 b/man/mcom.1 index 65dae2f..5e1b940 100644 --- a/man/mcom.1 +++ b/man/mcom.1 @@ -1,4 +1,4 @@ -.Dd August 27, 2019 +.Dd February 5, 2020 .Dt MCOM 1 .Os .Sh NAME @@ -126,6 +126,9 @@ on the draft, and print the result of Re-edit the draft. .It Ic d Delete the draft and quit. +.It Ic p +Preview the draft, using +.Xr mshow 1 . .El .Sh ENVIRONMENT .Bl -tag -width Ds diff --git a/mcom b/mcom index 3658dcb..c030b61 100755 --- a/mcom +++ b/mcom @@ -510,7 +510,7 @@ while :; do mshow -t "$draftmime" c= ;; - show) + p|preview|show) if [ -e "$draftmime" ]; then mshow "$draftmime" else @@ -519,7 +519,7 @@ while :; do c= ;; *) - printf 'What now? (%s[s]end, [c]ancel, [d]elete, [e]dit, [m]ime, sign, encrypt) ' "${automime:+mime and }" + printf 'What now? (%s[s]end, [c]ancel, [d]elete, [e]dit, [m]ime, [p]review, sign, encrypt) ' "${automime:+mime and }" read -r c ;; esac