From 6797f9347603aff0831bf56566fbf164cbdda179 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Mon, 8 Jul 2019 18:22:41 -0400 Subject: :exec, :pipe: show exit status on completion --- commands/msg/pipe.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'commands/msg') diff --git a/commands/msg/pipe.go b/commands/msg/pipe.go index 9001563..158f9ea 100644 --- a/commands/msg/pipe.go +++ b/commands/msg/pipe.go @@ -92,7 +92,8 @@ func (_ Pipe) Execute(aerc *widgets.Aerc, args []string) error { Color(tcell.ColorDefault, tcell.ColorRed) } else { aerc.PushStatus(fmt.Sprintf( - "%s: complete", args[0]), 10*time.Second). + "%s: completed with status %d", args[0], + ecmd.ProcessState.ExitCode()), 10*time.Second). Color(tcell.ColorDefault, tcell.ColorDefault) } } -- cgit v1.2.3