I keep copy-pasting the addresses provided, I keep writing my plaintext reply in a file, and I keep forgetting to add a subject (because I am "just" writing a plaintext file)
Teach `git-send-email-reply` to append a `--subject` line. Signed-off-by: Stavros Ntentos <[email protected]> --- lib/PublicInbox/Reply.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/PublicInbox/Reply.pm b/lib/PublicInbox/Reply.pm index 8226fdc3..0f312fbe 100644 --- a/lib/PublicInbox/Reply.pm +++ b/lib/PublicInbox/Reply.pm @@ -103,6 +103,8 @@ sub mailto_arg_link { } } + push @arg, "--subject=".squote_maybe($subj); + # I'm not sure if address obfuscation and mailto: links can # be made compatible; and address obfuscation is misguided, # anyways. -- 2.31.0
