diff options
author | Robin Jarry <robin@jarry.cc> | 2022-01-19 20:57:48 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-01-19 21:29:16 +0100 |
commit | 92bf89c3389b8e08cf99d30cf20a818529680f51 (patch) | |
tree | 7a2af50307bef8c8623ae22dbb3f2ab03993ba26 /commands | |
parent | f0f7cf347c06953bcc9a68651ed70d52b0f41e93 (diff) | |
download | aerc-92bf89c3389b8e08cf99d30cf20a818529680f51.tar.gz |
docs: mention missing -T options for compose and forward
A template file may be specified for compose and forward as well.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands')
-rw-r--r-- | commands/account/compose.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/account/compose.go b/commands/account/compose.go index f48fa691..62bf11d3 100644 --- a/commands/account/compose.go +++ b/commands/account/compose.go @@ -72,7 +72,7 @@ func buildBody(args []string) (string, string, error) { } posargs := args[optind:] if len(posargs) > 1 { - return "", template, errors.New("Usage: compose [-H] [body]") + return "", template, errors.New("Usage: compose [-H header] [-T template] [body]") } if len(posargs) == 1 { body = posargs[0] |